$(document).ready(function() {

    var popMess = false;
    
    if ($('#myiframe').attr('src') == "/default.htm")
    {
        $("#nav").hide();
    }
    
//  bookmark
    $('#bookmark').jFav();
    
//  nav (awkward bit)
    $("#nav a").not('.ignore').bind('click', function() {    
        $('#message').hide();  
        var link = $(this).attr('rel');        
        if(link != '#' || link == '') {        
            $('#iframe').replaceWith("<div id='iframe'><iframe id='myiframe' name='myiframe' src='" + link + "' width='100%' height='100%' frameborder='0'></iframe></div>");
            if(link != '/prev') {
                $('#message').hide();
            }
        }
    });
    
    // seperate for ie6
    $('#clickMe a').bind('click', function() {    
        $('#message').hide();  
        $('#iframe').replaceWith("<div id='iframe'><iframe id='myiframe' name='myiframe' src='/prev' width='100%' height='100%' frameborder='0'></iframe></div>");
    });
    
    // seperate for ie6
    $('#web a').bind('click', function() {    
        //$('#message').hide();            
        $('#iframe').replaceWith("<div id='iframe'><iframe id='myiframe' name='myiframe' src='/prev' width='100%' height='100%' frameborder='0'></iframe></div>");
    });    

//  click to drag
    $('#nav').bind('drag',function( event ){
        $( this ).css({
	        top: event.offsetY,
	        left: event.offsetX
        });
    });

//  superfish START
    $('#nav > ul').superfish({ 
        delay:       800,                            // one second delay on mouseout 
        animation:   {opacity:'show', height:'show'},  // fade-in and slide-down animation 
        speed:       'NORMAL',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    }); 
    
//  escape button
    $('#escape, #clickMe').bind('click', function() {
        $('#nav').hide();
        $('#escape').hide();
        $('#web').show();
        $('#message').hide();
    });

//  web button
    $('#web > a').bind('click', function() {
        $('#nav').show();
        $('#escape').show();
        $('#web').hide();
        $('#message').show();
    });

//  x button
    $('#x').bind('click', function() {
        $('#message').hide();
    });   
    
//  animate logo
    $('#nav img').toggle(function() {        
        $('#nav').animate({
            height: '320px'      
        }, 500, function() {
            $('#nav > ul').show();
        });            
    }, function() {   
        $('#nav').animate({
            height: '55px'       
        }, 500, function() {
            $('#nav ul').hide();
        });    
    });
    
    /*
    if(popMess == false) {
    
        //$('#message').show();
    
    }
    */
    
//  dont get it button
    $('#dontGetIt > a').bind('click', function() {
        $('#message').show();
    }); 

//  subnav START

    $('#nav ul li ul').parents('li').children('a').css('background', 'url(images/arrow.gif) top right no-repeat');
    $('#nav ul li ul').parents('li').addClass('sub');

});

