jQuery (function (){

	jQuery("div").pngFix(); 

	jQuery(".side_widget ul").each (function(){
		//jQuery(this).find("li:first").css ({"border-top-width":"0px"});
		jQuery(this).find("li:last").css ({"border-bottom-width":"0px"});
	})
	
	jQuery("ul.children").each (function(){
		jQuery(this).parent().addClass ("noPad");
		jQuery(this).find("li:last").css ({"border-bottom-width":"0px","padding-bottom":"0px"});
		jQuery(this).find("li:last a").css ({"border-bottom-width":"0px"});
	})
	
	if (!jQuery.browser.msie){
		//jQuery(".button").corner("6px");
	}
	
	jQuery(".wp-button").hover (function (){ jQuery(this).addClass("wp-button-m"); }, function (){ jQuery(this).removeClass("wp-button-m"); })
	
	var tabContainers = jQuery('#tabContent > div');
	tabContainers.hide().filter(':first').show();
	
	
	window.setTimeout(function (){
		var content = jQuery("#content").height();
		var sidebar_left_m = jQuery("#sidebar_left_loaded").height();
		var sidebar_left_r = (content - sidebar_left_m)-6; //Getting AdSpace
		jQuery("#sidebar_left_r").height(sidebar_left_r);
		jQuery("#wrap-one").height (content);
		if (isSingle==1){
			jQuery("#wrapSingle").height (content);
		}
	},1200);
	
})