// JavaScript Document
$(document).ready(function(){
	
	
	
	$("#brandList li img").fadeTo(400, 0.5); 

	$("#brandList li img").hover(function(){
		$(this).fadeTo(500, 1.0); // This should set the opacity to 100% on hover (500ms duration)
	},function(){
   		$(this).fadeTo(400, 0.5); // This should set the opacity back to 50% on mouseout
	});
	

	
	
});

ddsmoothmenu.init({
	 mainmenuid: "navMenu", //menu DIV id
 	 orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
 	 classname: 'ddsmoothmenu', //class added to menu's outer DIV
 	 customtheme: ["#01070a", "#048dd2"],
 	 contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
});

