$(document).ready(function () {	
	//Links Hover
	/*$("#links ul li").hover(
		function() {
			$(this).css({
				background: "#244248"
			});									   
		},
		function() {
			$(this).css({
				background: "#192a2f"
			});	
		}
	);*/
	
	//Margin fix for floating extras links.
	 $("#links ul li").each(function(index){
		if(index%3==2) $(this).addClass("fix");
	});
	
	$('ul#extrasHeader').tabs();
	
	$('.wallpaper .image').fader({
		selectors: ".text span, .resolution a",
		fadein: 1,
		fadeout: 0
	});

	$('.wallpaper .image').fader({
		selectors: "img",
		fadein: .6,
		fadeout: 1
	});
	
	var scrWidth = screen.width;
	var scrHeight = screen.height;
	$("#scrWidth").html(scrWidth);
	$("#scrHeight").html(scrHeight);
		   
});
