$(document).ready(function() {
    
    // Easy Slider Plugin

	$("#slider").easySlider({
            auto:       true,
            continuous: true,
            numeric:    true,
            speed:      800,
            pause:      5000
	});
	// Corners
	$('.rounded').corner("cc:#CDB18E");
	
	$('.pagination strong, .pagination a, #sucesso').corner("5px");
	
	$('.global-nav ul').corner("bottom cc:#0F6CCB");
	
	//attach function to input and make text grayed out on page load
	textReplacement($('#email').css("color", "#999"));
	});

	// the function:
	function textReplacement(input){ //input focus text function
 	var originalvalue = input.val();
 	input.focus( function(){
  		if( $.trim(input.val()) == originalvalue ){ input.val('').css("color", "#000"); }
 	});
 	input.blur( function(){
  		if( $.trim(input.val()) == '' ){ input.val(originalvalue).css("color", "#999"); }
 	});
 	
 	$('.iscon-carrinho a').hover(function() {    	
		$(this).fadeTo(200, '0.8');
	}, function() {
		$(this).stop().fadeTo(200, '1');
	});
	
	// Modal
	$("a[rel='zoom1']").colorbox();	
	$("a[rel='zoom2']").colorbox();	
	$("a[rel='video']").colorbox();		
	$(".example5").colorbox();
		
	// Fade nas imagens
	
	$('.efeito, #thumbs li').hide();
    $('.efeito, #thumbs li').fadeIn(1000);
    
    $('#thumbs li.current, #thumbs li.current a, #thumbs li.current a:link, #thumbs li.current a:visited, #thumbs li.current a:hover, #thumbs li.current a:active').fadeTo(200, '0.5');	
    
    $('.lancamentos, .item, #thumbs li, .detalhe-produto img').hover(function() {    	
		$(this).fadeTo(200, '0.5');
	}, function() {
		$(this).stop().fadeTo(200, '1');
	});
	
	// Onde comprar
	
	$('#cidades').change(function(){
		window.location = $(this).val();
	});
	
	// Representantes
	
	$('#lista').change(function(){
		window.location = $(this).val();
	});
	
}
