var $j = jQuery.noConflict();

$j(	function(){

				
		$j('p.NAVLINKS a').mouseover(function(){
			//console.log("--------------------------");
			
			currentImage = $j('.theflash img').attr('src');
			//console.log("currentImage: "+currentImage);
			
			imageLink = $j(this).attr('alt');
			//console.log("imageLink: "+imageLink);
			
			if(imageLink != undefined && currentImage != imageLink){
				
				$j('.theflash img').fadeOut(100, function(){
					$j('.theflash img').attr('src',imageLink);
				}).fadeIn(100);
			}
			
		})
		

				
	
	
	
})
