/* The nice place to store all the handy little jQuery snippets */

$(document).ready(function() {

	// hover for anything	
	$('.buttonSubmit').hover(function() {
		$(this).addClass('ieHover');
		}, function() {
    	$(this).removeClass('ieHover');
 	 });
	 
	$('.buttonAction').hover(function() {
		$(this).addClass('ieHover2');
		}, function() {
    	$(this).removeClass('ieHover2');
 	 });
	 
	 $('.linkAction').hover(function() {
		$(this).addClass('ieHover');
		}, function() {
    	$(this).removeClass('ieHover');
 	 });
	 
	 $('.dealerBox').hover(function() {
		$(this).addClass('ieHover');
		}, function() {
    	$(this).removeClass('ieHover');
		
 	 });

});
 
