/*default page mouseovers*/

/*********add fades later because of time issues******/

$(document).ready(function() {

$("img.rolloverResources").hover(
function() { this.src = this.src.replace("/ex/images/out_03.png", "/ex/images/over_03.png");
},
function() { this.src = this.src.replace("/ex/images/over_03.png", "/ex/images/out_03.png");
});
$("img.rolloverProgramming").hover(
function() { this.src = this.src.replace("/ex/images/out_07.png", "/ex/images/over_07.png");
},
function() { this.src = this.src.replace("/ex/images/over_07.png", "/ex/images/out_07.png");
});
$("img.rolloverHardware").hover(
function() { this.src = this.src.replace("/ex/images/out_11.png", "/ex/images/over_11.png");
},
function() { this.src = this.src.replace("/ex/images/over_11.png", "/ex/images/out_11.png");
});
});


/*wanted to add something like this to it*/
//$("img.fade").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});

