(function($) {
	
	/* FADE ME */
	$.fn.fadeMe = function(){ 
		if(!this || !this[0]){return false} 	// heck if object is attacted else do nothing
		$(this).hover(function(){				// attach hover event to object
			// mouseover
			$(this).animate({opacity:".1"},200) // animate opacity to almost invisible
		},function(){
			//mouseout
			$(this).animate({opacity:"1"},250)	// animate opacity to visible
		})
	}
			
})(jQuery);

	
// ONLOAD FUNCTIONS AFTER THE PAGE LOADS, THESE ACTION STARTS
$(function(){

	// LOAD EVENTS
	$(".fade").fadeMe();
});
