
Cufon.replace('.home-content .col h2, .postmetadata p strong, .postmetadata p a, .post-title h2 a, .tags-holder h4, #navigation', { fontFamily: "baskerville_medium" });
Cufon.replace('.side-box-cnt h2 ', { fontFamily: "baskerville_medium" });
Cufon.replace('.post-teal .button ', { fontFamily: "baskerville_medium" });
	
	


$( document ).ready( function(){


	$("#preloader").hide();
	$("#preloader-gallery").hide();
 
	$('#navigation ul li').hover(function () { 
		$(this).find('.drop-down').slideDown('slow').show();
		$(this).addClass('hover');
	}, function () { 
		$(this).find('.drop-down').slideUp('slow');
		$(this).removeClass('hover');
	})
	
	$('.blink')
		.focus(function(){
			if ( $(this).attr('value') == $(this).attr('title') ) {
				$(this).attr({ 'value': '' })
			}
		})
		.blur(function(){
			if ( $(this).attr('value') == '' ) {
				$(this).attr({ 'value': $(this).attr('title') })
			}
		})
		
	$('#menu-navigation li ul').wrap('<div class="drop-down" />');

	$('#sidebar .side-box:nth-child(even)').addClass('darker-box');

	$('.widget_tag_cloud div').addClass('widgeted');

	 $("#navigation").addClass('showme');

});
