$(document).ready(function(){$('.image_one').hoverIntent(hover,out);function hover(){$('.image_one img').fadeOut();$('.rollover1').fadeIn();}
function out(){$('.rollover1').fadeOut();$('.image_one img').fadeIn();}
$('.image_two').hoverIntent(hover1,out1);function hover1(){$('.image_two img').fadeOut();$('.rollover2').fadeIn();}
function out1(){$('.rollover2').fadeOut();$('.image_two img').fadeIn();}
$('.image_three').hoverIntent(hover2,out2);function hover2(){$('.image_three img').fadeOut();$('.rollover3').fadeIn();}
function out2(){$('.rollover3').fadeOut();$('.image_three img').fadeIn();}
$('.image_four').hoverIntent(hover3,out3);function hover3(){$('.image_four img').fadeOut();$('.rollover4').fadeIn();}
function out3(){$('.rollover4').fadeOut();$('.image_four img').fadeIn();}
$('a').css('textDecoration','none');}); 
