/*!
 * http://jquery.com/
 *
 * Copyright 2011, Televisa Esmas
 * Author Edmundo Retama
 * GPL License
 */
var stagingLinks=new Array();var lastStagingInd=-1;var stageDelay=5000;var stageTimer;function goNextStage(){nextStagingInd=parseInt(lastStagingInd)+1;nextStagingInd=(nextStagingInd+1<=stagingLinks.length)?nextStagingInd:0;$('#stage-pager a[rel="'+nextStagingInd+'"]').click();}
function goBackStage(){nextStagingInd=parseInt(lastStagingInd)-1;nextStagingInd=(nextStagingInd>=0)?nextStagingInd:stagingLinks.length-1;$('#stage-pager a[rel="'+nextStagingInd+'"]').click();}
$(document).ready(function(){var elements=$('.stage-element');elements.css({'display':'none','position':'absolute'});elements.find('.actions').css({'margin-left':'998px'});pagerLinksa=$('#stage-pager a');pagerLinksa.each(function(i){$(this).attr('rel',i);stagingLinks.push(this);});pagerLinksa.click(function(e){e.preventDefault();newInd=$(this).attr('rel');if(newInd!=lastStagingInd){clearTimeout(stageTimer);lastSt=$('#stage-pager a[rel="'+lastStagingInd+'"]');newSt=$($(this).attr('href'));newSt.fadeIn(500);newSt.find('.actions').delay(500).animate({'margin-left':'673px'},500)
$(this).css({'opacity':'1','filter':'Alpha(opacity=100)'});lastSt.css({'opacity':'0.5','filter':'Alpha(opacity=50)'});lastSt=$($(lastSt).attr('href'));lastSt.fadeOut(500);lastSt.find('.actions').animate({'margin-left':'998px'},500);lastStagingInd=newInd;stageTimer=setTimeout(goNextStage,stageDelay);}});$('#stage-controls .next').click(function(e){e.preventDefault();goNextStage();});$('#stage-controls .previous').click(function(e){e.preventDefault();goBackStage();});stageTimer=setTimeout(goNextStage,stageDelay);$(pagerLinksa.get(0)).click();});
