$(document).ready(function() {
// This is the jquery stuff to hide the intro & begin the callouts
	var openedUp = "no"
	$("#retailersList li a" ).click(function(event){
	var whoAmI = $(this).attr("class");
		var openMe = "#collectionsStyle-"+whoAmI;
		if (openedUp == "no"){
		
		$(openMe).slideDown("slow");
		openedUp = "yes";
		whatsOpen = openMe;
	//endif
	} else {
		$(whatsOpen).slideUp("fast");
    	$(openMe).slideDown("slow");
    	whatsOpen = openMe
    }
	
	});
	// The closer stuff	
	$("#retailcloseX img").click(function(event){
		//alert($(this).attr("class"))
		var whoAmI = $(this).attr("class");
    	var openMe = "#collectionsStyle-"+whoAmI;
		if (openedUp == "yes"){
			$(openMe).slideUp();
			openedUp = "no"
		}
	});

});