﻿$('document').ready(function(){

// GET QUOTE BUTTON
var buttonOnBlur = new Image();
buttonOnBlur.src = "images/rv/index_r3_c3.jpg";

var buttonOnHover = new Image();
buttonOnHover.src = "images/rv/index_r3_c3_over.jpg";

$("#ButtonGetQuote").hover(function(){
swapImageOn(this,"images/rv/index_r3_c3_over.jpg");
},function(){
swapImageOff(this,"images/rv/index_r3_c3.jpg");
});

// ON QUOTE PAGE - Watch video buttons
var buttonVideoBlur = new Image();
buttonVideoBlur.src = "images/quote/videodown.jpg";

var buttonVideoHover = new Image();
buttonVideoHover.src = "images/quote/videoup.jpg";

$("#video1").hover(function(){
swapImageOn(this,"images/quote/videodown.jpg");
},function(){
swapImageOff(this,"images/quote/videoup.jpg");
});

$("#video2").hover(function(){
swapImageOn(this,"images/quote/videodown.jpg");
},function(){
swapImageOff(this,"images/quote/videoup.jpg");
});


// ON QUOTE PAGE - Apply now buttons
var buttonApply1 = new Image();
buttonApply1.src = "images/quote/ApplyNow5.jpg";

$("#apply1").hover(function(){
swapImageOn(this,"images/quote/ApplyNow5.jpg");
},function(){
swapImageOff(this,"images/quote/ApplyNow4.jpg");
});

$("#apply2").hover(function(){
swapImageOn(this,"images/quote/ApplyNow5.jpg");
},function(){
swapImageOff(this,"images/quote/ApplyNow4.jpg");
});

function swapImageOn(c,img){
$(c).attr("src",img);           
}//end swapImageOn

function swapImageOff(c,img){
$(c).attr("src",img);           
}//end swapImageOff

});
