Cufon.replace('.header .logo .blogname', { fontFamily: 'BakerSignet BT', fontSize: '40px', hover: true });
Cufon.replace('.footer-box .colBoxHeading h3, .specialBox .colBoxHeading h3', { fontFamily: 'BankGothic Lt BT', fontSize: '22px' });
Cufon.replace('.boxHeading h3, .boxHeading h2, .boxHeading h1', { fontFamily: 'BankGothic Lt BT', fontSize: '22px' });
Cufon.replace('.widget .widget-heading h3, .widget2 .widget-heading h3', { fontFamily: 'BankGothic Lt BT', fontSize: '15px' });
Cufon.replace('.tabs ul.ulnav li', { fontFamily: 'BankGothic Lt BT', fontSize: '14px' });
Cufon.replace('.catFeatured .moxHeading h3, .catFeatured .moxHeading h2, .catFeatured .moxHeading h1', { fontFamily: 'BankGothic Lt BT', fontSize: '14px' });
jQuery (document).ready(function (){
	
	window.setTimeout(function(){
		var cHeight = jQuery ("#content").height();
		var lHeight = jQuery ("#sidebar-left").height();
		var rHeight = jQuery ("#sidebar-right").height();
		var cHeight2 =  cHeight;
		
		if (is_home==1){
			cHeight2 = cHeight - jQuery ("#jad").height();
		};
		
		jQuery ("#sidebar-left, #leftCol").height(cHeight2);
		jQuery ("#sidebar-right").height(cHeight);
		
		var lHeight2 = cHeight2 - ( lHeight - jQuery ("#sidebar-left .widget2:last").height() );
		jQuery ("#sidebar-left .widget2:last").height(lHeight2 + 6)
		
		var rHeight2 = cHeight - ( rHeight - jQuery ("#sidebar-right .widget:last").height() );
		jQuery ("#sidebar-right .widget:last .widget_body").height(rHeight2 - 46)
		
	}, 1000);
	
	jQuery (".widget ul li").hover(function (){
		jQuery (this).addClass('liHover');
	},function (){
		jQuery (this).removeClass('liHover');
	});
	
	var tabContainers = jQuery('#tabContent > div');
	tabContainers.hide().filter(':first').show();
	
	jQuery('#tabNav li').click(function () {
		tabContainers.hide();
		var filT = "#" + jQuery(this).attr("id") + "_content";
		tabContainers.filter(filT).show();
		jQuery('#tabNav li').removeClass('active');
		jQuery(this).addClass('active');
		return false;
	}).filter(':first').click();


})
