$(document).ready(function(){	

	$("ul.sf-menu").superfish(); 

	if (history.length < 1) {
		$('.buttonBack').hide();
	} else {
		$('.buttonBack').bind( 'click', function(e) {
			e.preventDefault();
			history.back();
		})
	}

	$('.titleBlock, .recordImage').hoverIntent( function() {
		fadeAndScroll( $(this).parent().find('.areaAffected'), 'in');
	}, function() {
		fadeAndScroll( $(this).parent().find('.areaAffected'), 'out');
	});
	
	
	if($(".gallery").length>0) { //gallery page - set up lightbox
		
		Shadowbox.init({
	    	// skip the automatic setup again, we do this later manually
	    	skipSetup: true
		});
		
		Shadowbox.setup("#document .gallery a", {
        	player: "img",
        	gallery: "RTP",
        	continuous: true
    	});
    	

	}

});

function fadeAndScroll(fadeItem, fadeDirection) {

	if (fadeDirection == 'in') {
		 fadeItem.animate({
		    opacity: 1,
		    height: 'toggle'
		  }, 500 );
	} else {
		 fadeItem.animate({
		    opacity: 0,
		    height: 'toggle'
		  }, 500 );
	}


}
