jQuery(document).ready(function() {
	$('.advertising_picture').hover(
			function() {
				$(this).animate({opacity: "1"}, 300)
			},
			function() {
				$(this).animate({opacity: "0.5"}, 300)
			}
	)
});
