$(function () {
//	$('#header_ship div.explosion').css('opacity', 0.93);
	$('#header_ships_link a').click(function (event) { explodeShip(event, $(this)); });
	$('#header_ship a').click(function (event) { explodeShip(event, $(this)); });
});

function explodeShip(evtClick, eLink) {
	evtClick.stopPropagation();
	evtClick.preventDefault();
	var link = eLink.attr('href');
	$('#layout').addClass('noscroll');
	$('#header_ship div.explosion').removeClass('hidden');
	setTimeout(function () {
		document.location = link;
	}, 1000);
}