$(document).ready(function()
{
	// Load Eye Background Image
	$.loadEyeBackground();
	// Load Eye Areas
	$.loadEyeAreas();
	// Follow Eyes
	EYES.follow ('eyeLeft');
	EYES.follow ('eyeRight');
})

$.loadEyeBackground = function()
{
	$('div#header').css('background-image','url("/templates/wbp/images/header-eyeless.png")');
}

$.loadEyeAreas = function()
{
	$("<div class='eyes' id='eyeLeft'><img src='/templates/wbp/images/eye.png'></div><div class='eyes' id='eyeRight'><img src='/templates/wbp/images/eye.png'></div>").appendTo("div#headerinner");
}


