$(document).ready(function(){ 

	var footer = $('#footer2');
		footer.css({
	    	position: 'absolute',
	    	left: '50%',
	    	'margin-left': 0 - (footer.width() / 2)
		});
	var clouds = $('#clouds');
		clouds.css({
	    	position: 'absolute',
			top: '30px',
	    	left: '50%',
	    	'margin-left': -550
			
		});
	var nav = $('#nav');
	var navLi = $('#nav ul li');
	var navLiLength = navLi.length;
	navLi.css({
    	'width': nav.width() / navLiLength +'px'
		});

	$("a.filter").click(function() {
		$(this).toggleClass("LabelSelected");
		var tag = $(this).attr("id");
		$('.' + tag).animate({ 
    			width: "toggle",
    			opacity: "toggle"
  			}, 500 );
 		return false; 
	});

});

	