$(document).ready(function() {
	$('#columns .recent-posts .post:last-child').addClass('last-post');
	$('#side #sub-menu ul li:last-child a').addClass('last-li');
	
	
	$(".af-form-wrapper input.text").focus(function(){
		if(this.value == this.defaultValue){
			this.value = "";
		}
	});
	$(".af-form-wrapper input.text").blur(function(){
		if(this.value == ""){
			this.value = this.defaultValue;
		}
	});
	
	
		//if($('#menu li.current_page_item').parent().parent().find('a:first').html() != 'Home') $('#menu li.current_page_item').parent().parent().find('a:first').addClass('current'); 
		
		var totalWidth = 0;
		
		$("#menu > ul > li").each(function(index,obj){
			totalWidth += $(obj).width();
		});
		$("#menu").css('width',totalWidth+3+"px");
		$(".menu-wrapper").css('width',totalWidth+3+"px");


	
	$('#side div.form-container form input.text').focus(function(){
		if ($(this).val()=='enter your email') $(this).val('');
	});
	$('#side div.form-container form input.text').blur(function(){
		if ($(this).val()=='') $(this).val('enter your email');
	});

	$('#side').find("div.sub-menu:first").each(function(){
		$(this).addClass('first-box');
	});
});
