$(document).ready(function() {
	/*$('img.fade').fadeTo(1, 0.70);*/
	$('img.fade').bind('mouseenter', function() { jQuery(this).fadeTo(200, 0.70); });
	$('img.fade').bind('mouseleave', function() { jQuery(this).fadeTo(200, 1.00); });
});

jQuery.fn.extend({
	scrollTo : function(speed, easing) {
		return this.each(function() {
        	var targetOffset = $(this).offset().top;
        	$('html,body').animate({scrollTop: targetOffset}, speed, easing);
      	});
	}
});
