$(document).ready(function(){
   if ( $('#home-code').length != 0 )  {
       $('#home-code').focus(function(){
           if ( $(this).val() == 'Uw code') {
                $(this).val('');
           }
       });

       $('#home-code').blur(function(){
           if ( $(this).val() == '') {
                $(this).val('Uw code');
           }
       });
       var recentSlideFunction = function() {
           $('#login').show();
           $('#ambassador').show();
           $('#skip').hide().parent().hide();
           clearInterval(recentInterval);
       };
       
       var recentIntervalTime = 60000;
       var recentInterval = setInterval(recentSlideFunction, recentIntervalTime);
       $('#login').hide();
       $('#ambassador').hide();
       $('#skip').show();

       $('#skip').click(function(){
           $(this).hide().parent().hide();
           $('#login').show();
           $('#ambassador').show();
       })

   }

/*
   if ($('#locatie_buttons').length != 0){
       var recentSlideFunction = function() {
           $('#locatie_buttons').show();
           clearInterval(recentInterval);
       };

       var recentIntervalTime = 60000;
       var recentInterval = setInterval(recentSlideFunction, recentIntervalTime);
       $('#locatie_buttons').hide();
   }
*/
    $("a[rel=external]").click(function() {
        window.open(this.href);
        return false;
    });
});




