jQuery(function() {
	jQuery("#foo2").carouFredSel({
		scroll	: {	duration: 1000},
		auto	: true,
		prev 	: {	
			button: "#foo2_prev",
			key: "left"
		},
		next 	: { 
			button: "#foo2_next",
			key: "right"
		},
		pagination: "#foo2_pag"
		
		
	});
	
	jQuery("#foo3 .textwidget").carouFredSel({
		scroll	: {	duration: 1000},
		auto	: false,
		prev 	: {	
			button: "#foo3_prev",
			key: "left"
		},
		next 	: { 
			button: "#foo3_next",
			key: "right"
		},
		pagination: "#foo3_pag"
	});
	
	
	//------------ Code to find the children of parent--------------------------------
	
	jQuery("ul#menu-top_nav li").each(function(){
    if(jQuery(this).find("div").length > 0){
       jQuery(this).children('a').addClass('d_down');
    } 
	
}); 
//--------------------------------------------------------------
////--------------Menu Dropdown Code---------------



	
	jQuery('ul#menu-top_nav li').children('div').hide();
	jQuery('ul#menu-top_nav li').hover(function(){
																     jQuery(this).children('div').show();
																  
																  },function(){
																	 jQuery(this).children('div').hide(); 
																  });
																  
																  
	//----------------------------------------------------------------------------															  
																  
	//-------------Hover Photo Code----------------------
	
	jQuery(".video_gallery ul li").children("div").hover(function(){
								jQuery(this).addClass("video_img_hover");
													},function(){
														jQuery(this).removeClass("video_img_hover");
	});
		
	//----------------------------------------------------------															  
																  
	//-------------Hover video Code----------------------
	
	jQuery(".video_thumb ul li").children("div").hover(function(){
								jQuery(this).addClass("video_img_hover");
													},function(){
														jQuery(this).removeClass("video_img_hover");
	});
	
	jQuery(".video_thumb ul li").children("div").click(function(){
								jQuery(this).addClass("active");
													},function(){
														jQuery(this).removeClass("active");
	});
		
	//----------------------------------------------------------																  
																  
	//-------------Hover Who we are Code----------------------
	
	jQuery("#about_section ul li").children("div").hover(function(){
								jQuery(this).addClass("img_box_hover");
													},function(){
														jQuery(this).removeClass("img_box_hover");
	});
		
	//----------------------------------------------------------
	
});


