$(document).ready(function(){
  
  if(!$.cookie('platowoodwork_ad')){
	  $('#galleryframe').hide();
	  $('#ad').show();
  	$.cookie('platowoodwork_ad', '1', { expires: 1, path: '/dealers' });
  }
  
  $('#headercontent_sizzling').click(function(){
	  $('#galleryframe').fadeOut('normal', function(){
	  	$('#ad').fadeIn()
	  });
	  return false;
  });
  
  $('#ad').click(function(){
  	$('#ad').fadeOut('normal', function(){
  		$('#galleryframe').fadeIn();
  	});
  	return false;
  });
  
 
  });
  
});