jQuery(document).ready(function() {
	//bluz_portfade();							
	bluz_engage();
	bluz_minor();
});


//function bluz_portfade(){
//	jQuery('ul.gallery li a img').hover(function(){
//		jQuery(this).stop().fadeTo(500, 0.4); //portfolio effect
//	}, function() {
//		jQuery(this).stop().fadeTo(300, 1);
//	});
//}

function bluz_engage(){
	jQuery('ul.sf-menu').superfish({ 
        delay:       250  // one second delay on mouseout 
	});

	//jQuery('.lightbox').fancybox({'titlePosition' : 'outside'});


}

function bluz_minor(){
	jQuery('span.close').click(function() {
		jQuery(this).parent().slideUp(400,"easeInCubic");					   
	});
	jQuery('.footer-colum li:last-child').css("border-bottom", "none");
	jQuery('.footer-colum li:first-child').css("border-top", "none");
	jQuery('[rel=tipsy]').tipsy({fade: true, gravity: 's'});
}

