$(document).ready(function(){

	// Fonts
	Cufon.replace('h3');
	Cufon.replace('#dropdown h4');
	Cufon.replace('#header li a');
	Cufon.replace('.hel');
	
	// Drop Down
	$('#link-acerca-triumph').click(function() {
		if ($('#dropdown').css('display') == 'block') $('#dropdown').slideUp();
		$("#dropdown").html("");
		$("#dropdown").load("/acerca/");
	});
	/*
	$('#link-participa').click(function() {	
		if ($('#dropdown').css('display') == 'block') $('#dropdown').slideUp();
		$("#dropdown").html("");
		$("#dropdown").load("/participa/");
	});
	*/
	$('#link-tiendas').click(function() {
		if ($('#dropdown').css('display') == 'block') $('#dropdown').slideUp();
		$("#dropdown").html("");
		$("#dropdown").load("/tiendas/");

	});
	
	$('#s5').cycle({
    	fx:     'fade',
	    timeout: 6000,
	    after:   onAfter, 
	    before:   onBefore, 
		next:   '.tg_next', 
		prev:   '.tg_prev'
	 });
		
	// Deep linking
	$.historyInit(menuclick);
	$("a[rel='menudropdown']").click(function(){
	    var hash = this.href;
	    hash = hash.replace(/^.*#/, '');
	    $.historyLoad(hash);
	    return false;
	});
	
	// Reordeno los box's
	arrange();
	window.setTimeout('arrange();', 1000);
	window.setTimeout('arrange();', 1500);
	window.setTimeout('arrange();', 2000);
	window.setTimeout('arrange();', 2500);
	window.setTimeout('arrange();', 3000);
	window.setTimeout('arrange();', 3500);
	window.setTimeout('arrange();', 4000);
	$('#principal').css({'visibility' : 'visible'});
	
    // open a welcome message as soon as the window loads
});

window.onload = function() {
    Shadowbox.open({
        content:    'http://www.misstriumph.cl/comunicado/',
        player:     'iframe',
        title:      '', 
        width: 672, 
        height: 442
    });
};

function onAfter() { 
	//$('#fotodesc').fadeIn('fast');
	$('#fotodesc').html(this.alt);
}

function onBefore() { 
	//$('#fotodesc').fadeOut('fast');
}

function menuclick (hash) {
	$('html,body').animate({scrollTop: $('html,body').offset().top}, 1000);
	
	for ( i = 1; i <=4; i++ ) $('#general-'+i).removeClass('sel');
	/*$('#dropdown').removeClass('acerca');
	$('#dropdown').removeClass('participa');
	$('#dropdown').removeClass('tiendas');*/
	
	if (hash) {
		if (hash == "/acerca/") {
			$('#general-1').addClass('sel');
			if ($('#dropdown').css('display') == 'block') $('#dropdown').slideUp();
			$("#dropdown").load("/acerca/");
		}
		
		if (hash == "/participa/") {
			$('#general-2').addClass('sel');
			if ($('#dropdown').css('display') == 'block') $('#dropdown').slideUp();
			$("#dropdown").load("/participa/");
		}
		
		if (hash == "/tiendas/") {
			$('#general-3').addClass('sel');
			if ($('#dropdown').css('display') == 'block') $('#dropdown').slideUp();
			$("#dropdown").load("/tiendas/");
		}
	}
}

function show_boxposts(desde, hasta, total) {
	for (i=desde; i<=hasta; i++){
		$('#boxpost'+i).fadeIn();
		window.setTimeout("arrange();", 200);
	}

	if (hasta < total) {
		$('#btnmasarticulos').html('<a href="javascript:show_boxposts('+(desde + 10)+', '+(hasta + 10)+', '+total+');" ><img src="/wp-content/themes/misstriumph/images/masarticulos.png" alt="MAS ARTICULOS" /></a>');
	} else {
		$('#btnmasarticulos').html('');
	}
}
