// Jquery with no conflict
jQuery(document).ready(function($) {
	// Footer menu rollover --------------------------------------------------- //
	var $b = jQuery.noConflict()
	
	$b('#footer .col .page_item').hover(function(){
		// over
		$b(this).children('a').stop().animate({ marginLeft: "5"	}, "fast");
	} , function(){
		// out
		$b(this).children('a').stop().animate({marginLeft: "0"}, "fast");
	});
	
//close			
});
	
// search clearance	
function defaultInput(target){
	if((target).value == 'pesquisar...'){(target).value=''}
}

function clearInput(target){
	if((target).value == ''){(target).value='pesquisar...'}
}




