// JavaScript Document

var backgroundArray = ["images/header1.jpg","images/header2.jpg","images/header3.jpg","images/header4.jpg","images/header5.jpg"]

$(document).ready(init)

function init() {
	$("#content.indexPage .header").css("backgroundImage", "url("+backgroundArray[Math.floor(Math.random()*backgroundArray.length)]+")");
	
	$("a.special").each(function(){
		$(this).parent().parent().css("height", $(this).parent().parent().height())
		$(this).css({"top":$(this).parent().parent().height() -22});
		
	});
	
	$(".contentBlock").click(function() {
		window.location.href = $(this).children("a.special").attr("href");
	});
	
}
