/**
 * 
 */


/*********************
***** widgetLeloSearch
*********************/

$().ready(function() {
	var div = $('form#widgetLeloSearch .campo').parent().parent('div');
	var width = div.width() - 40;
	$('form#widgetLeloSearch .campo').css('width',width);
	$('form#widgetLeloSearch .campo').focus(function() {
		if($(this).attr('value') == $(this).attr('alt')){
			$(this).attr('value', '');
		}
	});
	$('form#widgetLeloSearch .campo').blur(function() {
		if($(this).attr('value') == ''){
			$(this).attr('value', $(this).attr('alt'));
		}
	});
});


/*********************
***** widgetLeloRedesSociais
*********************/

$().ready(function() {
	$('#widgetLeloRedesSocias img').hover(function(){
		$(this).stop().animate({paddingLeft:'10px'},500);
		},function(){
		$(this).stop().animate({paddingLeft:'0px'},500);
	});
});

