$(function () {
	$('.galleryitem img').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function () {
	$('.galleryitemhome img').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function () {
	$('.galleryitemgenre img').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(document).ready(function() {
	$('.animate_back')
		.hover(function() { 
			$(this).stop(true, true).animate({ opacity: 0 },'fast');
		}, function() { 
			$(this).stop(true, false).animate({ opacity: 1 }, 'normal');
		});	
});




