jQuery(document).ready(function(){
	//social menus
	jQuery("#footer .social ul a").each(function(){
		var curtitle = jQuery(this).attr("title");
		jQuery(this).addClass(curtitle);
	})
	
	//footer main menu
	jQuery(".page-navi ul li:last").addClass("last");
	
	//sidebar last news
	jQuery("#sidebar .last_news .post:last").addClass("last");
	
	//product box
	jQuery(".product_blk .prodbox:first").addClass("first").find(".chair").css({display: "none"});
})

jQuery(window).bind("load", function(){
	//sidebar vertica align imgs
	jQuery("#sidebar .post_img img").each(function(){
		var imgh = jQuery(this).height();
		jQuery(this).css({ marginTop: -imgh/2 })
	})
})
