$(document).ready(function() {

	$(".SubCategories li").hover(
	function () {
		$(this).find('p').slideDown();
	}, 
	function () {
		$(this).find('p').slideUp();
	});
  
	$('#cart').click(function(){
		$('.cart-container').toggle();
	});
	
	$("#menu-top-navigation li").hover(
		function() {
			$(this).addClass('active');
		}, function() {
			$(this).removeClass('active');
		}
	);
	
});

preload_image_object = new Array();
// set image url
image_url = new Array();
image_url[0] = "/wp-content/themes/aav/images/nav_about_o.jpg";
image_url[1] = "/wp-content/themes/aav/images/nav_audio_rentals_o.jpg";
image_url[2] = "/wp-content/themes/aav/images/nav_contact_o.jpg";
image_url[3] = "/wp-content/themes/aav/images/nav_crews_o.jpg";
image_url[4] = "/wp-content/themes/aav/images/nav_events_o.jpg";
image_url[5] = "/wp-content/themes/aav/images/nav_production_o.jpg";
image_url[6] = "/wp-content/themes/aav/images/nav_post_sound_o.jpg";
image_url[7] = "/wp-content/themes/aav/images/nav_visual_rentals_o.jpg";
image_url[8] = "/wp-content/themes/aav/images/btn_request_quote_cart.jpg";
image_url[9] = "/wp-content/themes/aav/images/btn_empty_cart.jpg";
image_url[10] = "/wp-content/themes/aav/images/bg_post.jpg";
image_url[11] = "/wp-content/themes/aav/images/bg_events.jpg";

var i = 0;
for(i=0; i<=11; i++){
 preload_image_object[i] = new Image();
 preload_image_object[i].src = image_url[i];}
