

$(document).ready(function() {
	function showslider() {
		$('div#emislider').show();	
		$("div#emislider").animate({ top: "100px" }, 2000 );  // 100px is how far down the page the slider goes;
															  // 2000 is the animation speed; higher numbers are slower
	}
	
	// the close button
	$("img#img_closebtn").click(function() {
		$("div#emislider").hide();
	});
			
	// the continue button
	$("div#emislider a").click(function() {
		var windowtype = $(this).attr("windowtype");
		var href = $(this).attr("href");
		$("#emislider").hide();
		if (windowtype == "full") {
			window.open(href);
		} else {
			window.open (href, "Get $10 Off","menubar=0,resizable=1,width=500,height=500");
		}
		return false;
	});
			
	showslider();
});