/**
 * @author Thomas Pimentel : Vzion Designs
 */
jQuery.fn.hoverFade = function(){
	
	var element = this;
	var image = element.find("li a img.imageLink");
	
	$(image).siblings().fadeTo(0, 0);
    $(image)
        .hover(
        	function() { 
           	$(this).siblings().fadeTo(300, 1);
        //IE Fix   		 
        if($.browser.msie){
		if($.browser.version <= 7){
			getWidth = $(this).width();
			$(this).siblings().css("position", "relative");
			$(this).siblings().css("left", -5 - getWidth);
		}
  	}
        	},	
        	function() {
        		$(this).siblings().stop();
				$(this).siblings().fadeTo(300, 0);
        });
        
        		
		$(window).focusout(
			function(){
			    $(image).siblings().stop();
				$(image).siblings().fadeTo(300, 0);
			});
		

}; 
