jQuery(document).ready(function() {
	//
	// Theme v1.3 stuff
	//
	jQuery('.home .main h2').click(function(event) {
		event.preventDefault();
		if (jQuery(this).next('.home ul').is(':hidden')) {
			jQuery(this).next('.home ul').slideDown('fast');
		} else {
			jQuery(this).next('.home ul').slideUp('fast');
		}
	});

	//HIDE THE ULs ON PAGE LOAD	
	jQuery('.home .main ul').delay(800).slideUp(900);
	
	//
	// hide title on post hover
    //
    jQuery('.post').hover( function() {
    		jQuery('.title-block', this).hide();
    	},
    	function() {
    		jQuery('.title-block', this).show();
    		}
    );
    
    // 
    // Boston Built toggle
    //
	jQuery(function() {
			jQuery('#bostonbuilt-tag').hover(function(){
				jQuery(this).find('span').animate({right:'208px'},{queue:false,duration:800});
			}, function(){
				jQuery(this).find('span').animate({right:'0px'},{queue:false,duration:800});
			});
		});
 });

