// JavaScript Document
$(document).ready(function() {
	$(".box_white").mouseover( function(){$(this).css('background-image',"url('/img/whitebox_green.png')");} ); 
	$(".box_white").mouseout( function(){$(this).css('background-image',"url('/img/whitebox.png')");} );
	$(".box_green").mouseover( function(){$(this).css('background-image',"url('/img/greenboxes_change.png')");} ); 
	$(".box_green").mouseout( function(){$(this).css('background-image',"url('/img/greenboxes.png')");} );
	$(".aboutusbox_kaleb").mouseout( function(){$(this).css('background-image',"url('/img/aboutusbox_kaleb_change.png')");} );
 	$(".aboutusbox_kaleb").mouseout( function(){$(this).css('background-image',"url('/img/aboutusbox_kaleb.png')");} ); 
  $("a[rel^='prettyPhoto']").prettyPhoto();
	$("img#Image4").hover( function(){$(this).attr("src","/img/HOME-change.gif");} ,function(){$(this).attr("src","/img/HOME.gif");});
	$("img#Image5").hover( function(){$(this).attr("src","/img/SERVICES-change.gif");} ,function(){$(this).attr("src","/img/SERVICES.gif");});
	$("img#Image6").hover( function(){$(this).attr("src","/img/FAQ-change.gif");} ,function(){$(this).attr("src","/img/FAQ.gif");});
	$("img#Image7").hover( function(){$(this).attr("src","/img/TESTIMONIALS-change.gif");} ,function(){$(this).attr("src","/img/TESTIMONIALS.gif");});
	$("img#Image8").hover( function(){$(this).attr("src","/img/GUARANTEE-change.gif");} ,function(){$(this).attr("src","/img/GUARANTEE.gif");});
  $("img#Image9").hover( function(){$(this).attr("src","/img/GETSTARTED-change.gif");} ,function(){$(this).attr("src","/img/GETSTARTED.gif");});

});
