$(document).ready(function(){
/*TOP MENU*/	$(".topMenuBG").hover(function(){        $(this).css("background-image","url(images/topMenuButtonsH.gif)");
	},
	function(){ 		$(this).css("background-image","url(images/topMenuButtons.gif)");
	});
/*END TOP MENU*/

/*ICONS HOVER*/
    $(".smIcons").hover(function(){
        var hIcon = $(this).attr("hIcon");
        $(this).attr("src","images/"+hIcon);
	},
	function(){
		var nIcon = $(this).attr("nIcon");
 		$(this).attr("src","images/"+nIcon);
	});
/*END ICONS HOVER*/
});
