// JavaScript Document

$(function(){
	$('#whatsnew').click(function(){				  
			$('#news').toggle("slide", { direction: "right" } , 750);
			console.log('clicked');
	});

	$('#close').click(function(){
			$('#news').toggle("slide", { direction: "right" } , 750);
	});
});
							   
