// JavaScript Document

$(document).ready(function(){
		
	$("#defaultselected").toggle(
		function(){
		
			$("#brandSite").animate({
			opacity: 1,
			height: "120px",
			top:"-120px"},1000)
	
		},function(){
	
			$("#brandSite").animate({
			opacity: 0,
			height: "0",
			top:"0"},1000)
	
		}
	);
	
	$(".brandsite").click(function(){
					
		var url=$(this).attr("href")
		//alert(url)
		window.open(url);
				
	});		
	
});