  $(document).ready(function() {
 	
			  /*ROLLOVER*/
			 //FadeIn Portfolio Effect
			$('.fade-effect').children().hover(function() {
				$(this).siblings().stop().fadeTo(300,0.5);
			}, function() {
				$(this).siblings().stop().fadeTo(250,1);
			});
				
}); //FIN DE DOCUMENTREADY
