(function($) {
	$.fn.imgFade = function() {
	
		// OPACITY OF BUTTON SET TO 60%
		$("#homeslider .demo_btn, #templates .demo_btn").css("opacity","0.6");
	
		// ON MOUSE OVER
		$("#homeslider .demo_btn, #templates .demo_btn").hover(function () {
	
			// SET OPACITY TO 100%
			$(this).stop().animate({
				opacity: 1.0
			}, "fast");
		},
	
		// ON MOUSE OUT
		function () {
	
			// SET OPACITY BACK TO 60%
			$(this).stop().animate({
				opacity: 0.6
			}, "slow");
		});
	
	};
})(jQuery);

