/*With jQuery Cookie*/
$(document).ready(function(){
	$("#parent2").css("display","none");
            
 
$("select").change(function () {
if ($('select option:selected').val() == "Exhibits" ) {
$("#parent2").slideDown("fast"); //Slide Down Effect
$.cookie('showTop', 'expanded');
} else {
$("#parent2").slideUp("fast");	//Slide Up Effect
$.cookie('showTop', 'collapsed');
}
});  


     
      var showTop = $.cookie('showTop');  
     
      if (showTop == 'expanded') {
		
      	$("#parent2").show("fast");  
        $('select option:selected');  

      } else {
      	$("#parent2").hide("fast");
        $('select option:selected');
      }  
	  
	  $("select").change(function () {
if ($('select option:selected').val() == "Interiors" ) {
$("#parent3").slideDown("fast"); //Slide Down Effect
$.cookie('showTop', 'expanded');
} else {
$("#parent3").slideUp("fast");	//Slide Up Effect
$.cookie('showTop', 'collapsed');
}
});  


     
      var showTop = $.cookie('showTop');  
     
      if (showTop == 'expanded') {
		
      	$("#parent3").show("fast");  
        $('select option:selected');  

      } else {
      	$("#parent3").hide("fast");
        $('select option:selected');
      }  
          
});
  
//end control.js
