
function swapImage (imgId,imgPath) {
idimg="#" + imgId;

$(idimg).attr("src",imgPath);

}


$(document).ready(function(){ 

	$("#footer-contact-my").hover(
	  function () {
		$(this).css("background","url(images/logo_arise_on.gif) bottom left no-repeat");
	  }, 
	  function () {
		$(this).css("background","url(images/logo_arise_off.gif) bottom left no-repeat");
	  }
	);
	
	var imagesList = [
			'images/logo_arise_on.gif','images/mnu_top_home_off.gif',
			'images/mnu_top_mail_off.gif','images/mnu_top_map_off.gif'
	];
	
	var aImages = [];
	for (var i = 0, len = imagesList.length; i < len; i++) {
		aImages[i] = new Image();
		aImages[i].src = imagesList[i];
	}

	
	
	//$(".ppad").prepend("&nbsp;&nbsp;&nbsp;");

});
