jQuery.noConflict();

/**
 * Icone footer content 
 **/		
function focusIco(div){
	//alert(jQuery(div).hasClass("small").toString());
	jQuery(div).addClass("icobig").removeClass("icosmall");
	//div.style.width='69px'; div.style.height='26px';
}
function blurIco(div){
	//div.style.width='46px'; div.style.height='17px';
	jQuery(div).addClass("icosmall").removeClass("icobig");
}
