	//In order to handle IE 'display' issues, the hidden images initially render offscreen, then are hidden and moved to their correct position and the hover functionality is applied.
  
  $j(function(){		
          
    $j('#showme1, #showme2, #showme4, #showme5, #showme6').hide();
    $j('#showme1').css("left","245px");
    $j('#showme2, #showme4, #showme5, #showme6').css("left", "251px");
          
		$j('#hover1').hover(
			function(){
          $j(this).attr({src: "/wp-content/themes/kinnexxus/images/benay-button-rollover.png"});
				$j('#showme1').fadeIn('fast');
			},
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/benay-button.png"});
				$j('#showme1').fadeOut('fast');
			}
		)
		$j('#hover2').hover(
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/drew-button-rollover.png"});
				$j('#showme2').fadeIn('fast');
			},
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/drew-button.png"});
				$j('#showme2').fadeOut('fast');
			}
		)
		$j('#hover4').hover(
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/wayne-button-rollover.png"});
				$j('#showme4').fadeIn('fast');
			},
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/wayne-button.png"});
				$j('#showme4').fadeOut('fast');
			}
		)
		$j('#hover5').hover(
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/john-button-rollover.png"});
				$j('#showme5').fadeIn('fast');
			},
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/john-button.png"});
				$j('#showme5').fadeOut('fast');
			}
		)
		$j('#hover6').hover(
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/alice-button-rollover.png"});
				$j('#showme6').fadeIn('slow');
			},
			function(){
        $j(this).attr({src: "/wp-content/themes/kinnexxus/images/alice-button.png"});
				$j('#showme6').fadeOut('slow');
			}
		)
				
	});	

