/*================================================
-Main.js Document;
================================================*/

//----------------------------------------------- Cufon Styles	
Cufon.replace('h2, .learn-more, h6, h5, #menu-primary-links li a', { hover: true, fontFamily: 'Century Gothic', letterSpacing : '-0.5px'});
	
$(document).ready(function(){

$('#searchform').wrap('<div id="search"></div>');
$('#s').prev().remove();

$(".footer-nav > li:last-child").addClass("last-item");
$(".meta ul > li:last-child").addClass("bg-none");
$(".categories ul > li:last-child").addClass("last-child");

	$($('#nav').children()[0]).addClass('nav-home');
	$($('#nav').children()[1]).addClass('nav-games');
	$($('#nav').children()[2]).addClass('nav-news');
	$($('#nav').children()[3]).addClass('nav-jobs');
	$($('#nav').children()[4]).addClass('nav-contact');
	
});

/* Clear text -----------------------------------------------------*/

function focusText(thefield){
	if (thefield.defaultValue==thefield.value){
		thefield.value = "";
	}
}
function blurText(thefield){
	if (thefield.value == ""){
		thefield.value = thefield.defaultValue;
	}
}
