$(function () {

	// Fading effect on covers
	$('.mosaic-cover').hover(function() {

			$(this).stop().animate({
				opacity: .7
			}, 'fast');
		},
		function() {

			$(this).stop().animate({
				opacity: 1
			}, 'fast');

		});

	//Changing url of the mosiac brides issuu bar cover - instead of going to issuu, it will now lead people to the mini-site first
	$('table.issuubar td:last a').attr('href', 'http://www.mosaicmagazine.co.uk/brides');
	$('table.issuubar td:last a').attr('target', '_self');
});
