Cufon.replace('#top-bar a, #navigation a, .testimonials p, .home-content h2, .home-content h3, .home-content td, .home-content h4, .home-sidebar p, .home-sidebar h3, .footer-text p, .post h1, .post h2,  .post p, .post li, .featured-image h2, .featured-image p, #cboxTitle', {
	hover: true
});

jQuery(function($){
	$('.menu li').hover(function(){ 
		$(this).addClass('hover').children('ul').eq(0).show();
	},
	function (){
		$(this).removeClass('hover').children('ul').eq(0).hide();
	});
	
	$('#navigation > ul > li').each(function() {
		if ($(this).find('ul').length) {
			$(this).children('a').addClass('dd');
		}
	});
	
	$('.tags ul').each(function() {
		$(this).find('li:last').addClass('last');
	});
	
	$('.featured-image .info-trigger').click(function(){ 
		$('.featured-image .info').toggle();
		return false;
	});
	
	
	$('.thumb-slider ul').jcarousel({
		visible: 6,
		scroll: 1,
		wrap: "both"
	});
	
	$('a[rel="colorbox"]').colorbox({opacity:0.55});
	
	// Apply PNG Fix for Internet Explorer 6
	if($.browser.msie && $.browser.version.substr(0,1) == 6) {
		DD_belatedPNG.fix('h1#logo a, .featured-image .info-trigger, .featured-image .info, .footer-logo img');
	}
	
	top_background();
	
});

function top_background() {
	var top_content_height = jQuery('#top-content').outerHeight();
	var top_background_height = top_content_height + 70;
	
	jQuery('.content-bg').css('height', top_background_height);
}
