$(document).ready(function(){  	 
	
	
	$(".brand_hover").hover(function() {
		var array_div = new Array();
		array_div[1] = "brand1";
		var content = 1;
		content = Math.ceil(Math.random() * 1);
		$("#div_popup").html( $("#"+array_div[content]).html());
		$("#div_popup").stop(true, true).animate({opacity: "show", top: "250"}, "slow"); 
	}, function() { 
			$("#div_popup").html("");			
			$("#div_popup").animate({opacity: "hide", top: "400"}, "slow"); 
	});
 
}); 

ddsmoothmenu.init({
 mainmenuid: "menu", //menu DIV id
 orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
 classname: 'ddsmoothmenu', //class added to menu's outer DIV 
 contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
});