//////////////////////////////////////////////
/////   Opens Jquery
//////////////////////////////////////////////
$(document).ready(function(){
	
//////////////////////////////////////////////
/////   The sliding hidden container
//////////////////////////////////////////////
	$('div#SlideContainer').hide();
		
	$('a#OpenSlideContainer').toggle(function(){
		$this = $(this)
		$('div#SlideContainer').slideDown(800, function() { $this.html('<a href="#" id="OpenSlideContainer"><img src="images/placeholder_ad.jpg" alt="Featured Product" /></a>')})
		//$this.html('Close');
	},function(){
		$this = $(this);
		$('div#SlideContainer').slideUp(800, function() { $this.html('<a href="#" id="OpenSlideContainer"><img src="images/placeholder_ad.jpg" alt="Featured Product" /></a>')});
		//$(this).html('Open');
	});
	
	$('a#OpenSlideContainer1').toggle(function(){
		$this = $(this)
		$('div#SlideContainer').slideDown(800, function() { $this.html('Not Ready? Close It')})
		//$this.html('Close');
	},function(){
		$this = $(this);
		$('div#SlideContainer').slideUp(800, function() { $this.html('Buy Now, Save 15%')});
		//$(this).html('Open');
	});
//////////////////////////////////////////////
/////   Closes Jquery
//////////////////////////////////////////////
});
