$(document).ready(function(){

	$('.colorbox').colorbox();
	$('.iframe').colorbox({iframe:true,innerWidth:425, innerHeight:344,onCleanup:function(){

		var iframe = $('#cboxLoadedContent iframe').contents();
		var span = $('span',iframe).text();

	}});


	$('.iframe2').colorbox({iframe:true,innerWidth:820, innerHeight:400,onCleanup:function(){

	var content = $('#cboxLoadedContent iframe').contents();
	var r=$.parseJSON($('.json',content).text());

	var target = '#image_'+r.id;

	$(target).find('p').text(r.text);
	$(target).find('img').attr('src',r.src);

	}});


	$('#goToDesconto').click(function(){
	window.location='http://www.dicasmulher.com.br/desconto-mulher/';
	});

	/*==========================
		Gallery Bubble
	============================*/
	$('.gallery li a.showBubble').hover(function(){

		var title = $(this).attr('title');
		$(this).append("<div class='bubble'><p>"+title+"</p></em>");

	}, function() {
		$('.bubble').animate({opacity: "hide", left: "-180"}, "fast");
	});
	/*==========================
		REVISTAS: Old Edition
	============================*/
	$('#select_old_edition').change(function(){
	var href = $(this).val();
//	window.open(href);
	abreRevista(href);
	});

	$('#changeOnSelect').change(function(){
	var href = $(this).val();
	window.location = href;
	});

	/*==========================
		Search Field
	============================*/
	if($('#keywords').val()==''){
		var find_query = 'BUSCAR';
		$('#keywords').val(find_query);

		$('#keywords').focus(function(){

			if($(this).val() == find_query){
				$(this).val('');
			}

		}).blur(function(){

			if($(this).val() == ''){
				$('#keywords').val(find_query);
			}
	

		});
	}
/*============================
	Change City
============================*/
	$('#list_city').hover(function(){
	$(this).children('ul').fadeIn();
	}, function(){
	$(this).children('ul').fadeOut();
	});


$('#list_city li a').click(function(){

	var current_url = window.location.href;
	var city = $(this).text();

	$.ajax({

	type: "POST",
	url: current_url,
	data: "change_city="+city,

	//sucess in send information
	success: function(){

		var patt1=/(vitrine\/[0-9-]+)/g;

		if( current_url.match(patt1) ){
		window.location = 'http://www.dicasmulher.com.br/';
	
		}else{
		window.location = current_url;
		}

	}//end success


	})

return false;
});
/*==========================
	ESHOP : BOX MOUSE OVER
============================
$('div.holder').mousemove(function(e){
	
	var title = $(this).attr('title');
	title = title.replace(/\n/,'<br /><br />');
	
    $('body').append('<div class="max">'+title+'</div>');

    $('div.max').css({
    'top':e.pageY+10,
    'left':e.pageX+15
    })

	return false;
}).mouseout(function(){
$('div.max').remove();
});
============================*/

/*==========================
	CAROU
============================*/
$(function() {

	$(".carrll").jCarouselLite({
        vertical: true,
        visible: 4,
		auto:500,
        speed:2000
    });
    
	$(".jCarouselLite").jCarouselLite({
		btnNext: "#vitrine .next",
		btnPrev: "#vitrine .prev",
		scroll:3
	});

	$(".lista").jCarouselLite({
		btnNext: "#slideShow a.arrow-right",
		btnPrev: "#slideShow a.arrow-left",
		visible:5,
		scroll:2
	});

}); 
/*==========================
	
============================*/
$('.gallery .videos li').click(function(){
//	if($(this).has('.evento').length==1) return true;

	$('#content_links').addClass('die'); //kill interval

	$('.gallery .videos li.current').removeClass('current');
	$(this).addClass('current');
	var video_file = $(this).attr('rel');

	$('.gallery .main iframe').attr('src',video_file);

return false;
});
/*==========================
	SLIDESHOW
============================*/
$('#slideShow .thumbContainer .lista a').click(function(){

	$('#content_links').addClass('die'); //kill interval

	var link = $(this).attr('href');
	var caption = $(this).siblings('p').text();
	
	$('#slideShow .main a').attr('href',link);
	$('#slideShow .main .caption').text(caption);
	$('#slideShow .main img').fadeOut(function(){
	$(this).fadeIn().attr('src',link);
	})
	
return false;
});
/*==========================
	HOME : ABAS
============================*/
	$('#content_links a').click(function(){
	
		$('#content_links').addClass('die'); //kill interval
		var ID = $(this).attr('href');
		$('.gallery').addClass('none');
		$(ID).removeClass('none');
		
		var page = $(ID+' ul li:eq(0)').attr('rel');
		$(ID+' iframe').attr('src',page);
		return false;

	})
	
	/*==========================
		
	============================*/
	$('#addImages').click(function(){
	var tleft = $('input[name=image[]]').length+1;
	var tright = $('input[name=image[]]').length+2;
	
	html = '<div class="label_special">';
	html += '<div class="labelfake fleft"><span>Foto '+tleft+'</span>';
	html += '<input type="file" name="image[]">';
	html += '<textarea name="txt[]" cols="55" rows="3"></textarea>';
	html += '</div>';
	html += '<div class="labelfake fright"><span>Foto '+tright+'</span>';
	html += '<input type="file" name="image[]">';
	html += '<textarea name="txt[]" cols="55" rows="3"></textarea>';
	html += '</div>';
	html += '<div class="clear"></div>';
	html += '</div>';
	
	$('#target').append(html);
	
	});
	/*==========================
		
	============================*/
	$('.recaptcha').submit(function(){
	if($('input[name=recaptcha_challenge_field]').length==1) return true;

	var captcha = $(this);
	$('label,.passCon',captcha).fadeOut();

	$(this).find('.target_captcha').css('height','108px').load('http://www.dicasmulher.com.br/captcha/');

	return false;
	});


	
/*=============================
end	
============================*/
});

