
if(jquery == 1) {

	$(document).ready(function () {

		 $('.hoverNav').bind("mouseover", function(e){
		 	id = this.id;
		 	hover = $(this).attr("hover");
	        (this).src = domain+"data/images/clients/"+hover;
	    });
	    
	    $('.hoverNav').bind("mouseleave", function(e){
	    	hover = $(this).attr("normal");
	        (this).src = domain+"data/images/clients/"+hover;
	    });
	    
 		$('a[rel="external"]').each(function(){
			  $(this).attr('target', '_blank');
		});
	   
	});


}