$( function() {

	/**
	 * Script handling fadin/fadeout in widgets and top area images
	 */
	if ($('div.profilerTopAreaImageBackGround').attr('class')) {

		$('div.profilerTopAreaImageBackGround').bind('mouseover',
				function(event) {
					$(event.target).fadeTo('fast', 0.3);
				})
		$('div.profilerTopAreaImageBackGround').bind('mouseout',
				function(event) {
					$(event.target).fadeTo('fast', 1);
				})

	}

})