    jQuery(document).ready(function(){        try {			jQuery('#archive-list li:even').addClass("odd");			jQuery('.field-group, .field-group input, .field-group select').live('click',function(event){		 							if (event.type == 'click') {					if (jQuery(this).hasClass('field-group')){						var fg = jQuery(this);						if(jQuery(this).children('.datefield').length == 1){						} else {							jQuery(this).find('input, select').slice(0,1).focus();						}					} else {						var fg = jQuery(this).parents('.field-group');						jQuery(this).focus();					}					fg.not('.focused-field').addClass('focused-field').children('.field-help').slideDown('fast');					jQuery('.focused-field').not(fg).removeClass('focused-field').children('.field-help').slideUp('fast');				}			});			jQuery("select").each(function(){				jQuery(this).css("width", "auto");				if(jQuery(this).width() > 500){					jQuery(this).css("width", "500px");				}			});        } catch(e){ console.log(e); }    });     	jQuery(document).ready(function() {		jQuery('#banner > div').cycle({			fx: 'fade',			speed: 1200, 			timeout: 6000,			next: '#next-banner', 			prev: '#prev-banner'		});		jQuery('#galeria-home > div').cycle({			fx: 'fade',			speed: 1200, 			timeout: 6000,			pager: '#galeria-home-nav'		});		jQuery('#slideshow').cycle({ slideExpr: 'img' });		jQuery("#banner > div a").hover(			function () {				jQuery("#banner > div a p").show("fast");			},			function () {				jQuery("#banner > div a p").hide("fast");			}		);		jQuery("#menu-item-1182").toggle(			function(){ jQuery("#contato").slideDown(); },			function(){ jQuery("#contato").slideUp(); }		);		jQuery("#menu-item-1182").toggle(			function(){ jQuery(this).addClass("selected"); },			function(){ jQuery(this).removeClass("selected"); }		);		jQuery(".busca-bt").toggle(			function(){ jQuery("#busca-box").slideDown(); },			function(){ jQuery("#busca-box").slideUp(); }		);		jQuery(".marcas > a").toggle(			function(){ jQuery("#box-marcas").slideDown(); },			function(){ jQuery("#box-marcas").slideUp(); }		);		jQuery('#noticias div').hover(function() {			jQuery('#noticias div').not(this).stop().fadeTo('fast', 0.3);		}, function() {			jQuery('#noticias div').stop().fadeTo('fast', 1.0);		});		jQuery('#sidebar .widget').hover(function() {			jQuery('#sidebar .widget').not(this).stop().fadeTo('fast', 0.3);		}, function() {			jQuery('#sidebar .widget').stop().fadeTo('fast', 1.0);		});		jQuery("#post-galeria li").hover(			function () {				jQuery(this).children("div").show("fast");			},			function () {				jQuery(this).children("div").hide("fast");			}		);		jQuery('.galeria-anchor').bind('click',function(event){			var $anchor = jQuery(this);			jQuery('html, body').stop().animate({				scrollTop: jQuery($anchor.attr('href')).offset().top			}, 1500,'easeInOutExpo');			event.preventDefault();		});	});		
