
$(document).ready(function(){
	
	// header buttons
	 $("img.headerMenu").hover(function(){
		this.src = 'templates/up2vps/imgs/'+this.name+'-hover.gif';
	 });
     $("img.headerMenu").mouseout(function(){
		this.src = 'templates/up2vps/imgs/'+this.name+'.gif';
	 }); 
});

