/*
	@Authors  : 
	Cvetozar Ninov, Boris Delev 
*/
$(document).ready(function () {
	// Fade effecto to slider
	$('.slider').each(function(){
		$(this).css('opacity', '0.3');
		$(this).hover(function(){ $(this).stop(true); $(this).animate({ "opacity" : 1 } ); }, function() { $(this).animate({ "opacity" : 0.3 } ); })
	});
});