jQuery(document).ready(function($){
	
	$('body.moda #buscalojas2 select').customStyle();

	$('#buscalojas #nome_loja, #news_nome, #news_email').click(
	function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('#buscalojas #nome_loja, #news_nome, #news_email').blur(
	function() {
		if (this.value == '') {
			this.value = this.defaultValue;
		}
	});
	
	var img = new Image();
	$(img).load(function () {
		$(this).hide();
		$('#loader').removeClass('loading').append(this);
		$(this).fadeIn();
	}).error(function () {
	}).attr('src', '/uploads/destaque-moda.jpg');
	
});
