jQuery.noConflict();
jQuery(document).ready(function(){    
    
    var pos = 0;
    
    jQuery("#tour_next").click(function(){
    if (pos < 4) {
        jQuery("#tour_content").animate({ "background-position": "-=590px 0" }, 'normal', 'easeInOutCubic');
        jQuery(".tour_iv_"+(pos+1)).show();
        jQuery(".tour_iv_"+pos).hide();
        pos++;
    }
    });
    
    jQuery("#tour_prev").click(function(){
    if (pos > 0) {
        jQuery("#tour_content").animate({ "background-position": "+=590px 0" }, 'normal', 'easeInOutCubic');
        jQuery(".tour_iv_"+(pos-1)).show();
        jQuery(".tour_iv_"+pos).hide();
        pos--;
    }
    });
  
    jQuery("#popup_pass-recovery .close").click(function() {
        jQuery("#popup_pass-recovery").hide(); 
        jQuery("#inst_overlay").hide(); 
    })

    jQuery("#popup_login .close").click(function() {
        jQuery("#popup_login").hide();   
        jQuery("#inst_overlay").hide();
    })

    jQuery(".iFrameHyperlink").click(function() {
        jQuery("#popup_pass-recovery").show();  
        jQuery("#inst_overlay").show();
    })
  
});  
