$(document).ready(function(){
	/*magazine*/
	$('.ContentMagazine').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*cityguide*/
	$('.ContentCityguide').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*photo*/
	$('.ContentPhoto').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*event*/
	$('.ContentEvent').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*blog*/
	$('.ContentBlog').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*event list*/
	$('.event_row').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*Street seen list*/
	$('.contentStreetSeen').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*Album home*/
	$('.album_home').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
	/*city radar - home*/
	$(".strong").css({'opacity':'0'});
	$('.picture a').hover( function() {
		$(this).find('.strong').stop().animate({opacity:0.7},500); //,top:35
	}, function() {
		$(this).find('.strong').stop().animate({opacity:0},500);//,top:70
	});
	
	/*Slider home*/
	$('.imgthumb').hover( function() {
		$('#'+this.id).animate( {
			backgroundColor :'#E0E3DD'
		}, 150);
	}, function() {
		$('#'+this.id).animate( {
			backgroundColor :'#ffffff'
		}, 150);
	});
});
