$(document).ready(function(){	
	$("#full-portfolio").easySlider({
		prevText:'Previous',
		nextText:'Next',
		orientation:'horizontal'
	});

//fader
$(".fader").hover(function(){
    $(this).animate({opacity: "0.4"}, "fast")
      }, function() {
	$(this).animate({opacity: "1.0"}, "fast").stop(true, true)

    });
});
