// JavaScript Document

$(document).ready(function()
{

	resize();
	$("h1").each(function ()
	{
		if ($(this).attr("rel"))
		{
			$(this).html("").append("<img src=\"" + $(this).attr("rel") + "\" />");
		}
		
	}
	);
	
	
	$(".tab").hover(
		function()
		{
			$(this).animate({left: '0px'}, 100);
		},
		function()
		{
			$(this).animate({left: '-143px'}, 100);			
		}
	
	
	);
	$(".tab.selected").unbind();
		
});

$(window).resize(function ()
{
	
	resize();
	
});


function resize ()
{
	var offset = $(".site").offset().left;
	offset = offset - (Math.floor(offset/20)*20);
	//alert(":" + offset);
	$("body").css("background-position", "" + offset + "px 0");
	
}
