jQuery(document).ready(function() {

	Cufon.replace('#content h2, #navigation h3, #inicio p, .focus')

	$('#navigation a').removeAttr("href");
	
	function pages_initCallback(carousel) {
    jQuery('#navigation a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval($(this).attr("rel")));
        /* Awful!! Refazer! */
        if ($(this).attr("rel") == 2 ){
        	$("#content").animate({ backgroundColor: "#fcd81a" }, 600 );
       
        } else if ($(this).attr("rel") == 3 ){
        	$("#content").animate({ backgroundColor: "#aed669" }, 600 );
       
        } else if ($(this).attr("rel") == 4 ){
        	$("#content").animate({ backgroundColor: "#df3480" }, 600 );
       
        } else if ($(this).attr("rel") == 5 ){
        	$("#content").animate({ backgroundColor: "#6dc2b5" }, 600 );
        }
        
        });
        
    jQuery('#content .page .back').bind('click', function(){
        carousel.scroll(jQuery.jcarousel.intval("1"));
        $("#content").animate({ backgroundColor: "#f40031" }, 600 );
    });
        return false;
    }
    
   
	var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
	if(IE6){
	
	} else {
	    jQuery("#pages").jcarousel({
	        animation: "slow",
	        scroll: 5,
	        initCallback: pages_initCallback,
	        buttonNextHTML: null,
	        buttonPrevHTML: null
	    });
    }
    

});