$(document).ready(function() {
	
	check();

	$(window).resize(function() {check()});
	
	function check()
	{
		if($(window).width()<1024)
			$("#sidebar").stop(false,true).fadeOut("slow");
		else
			$("#sidebar").stop(false,true).fadeIn("slow");
	}

});
