!window.jQuery && document.write('<script src="/jquery-1.4.2.min.js"><\/script>');

$(function($){
    
    if ( !!$.colorbox ) {
        $(".locator").colorbox({innerWidth:800, innerHeight:605, scrolling:false});
		$(".cat").colorbox();
		$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
    }
    
    // Main navigation fade
    $('#nav a:not(a.current) span').hover(function(){
        if ($('body').outerWidth() >= 320) {
            $(this).stop().fadeTo(500, 0);
        }
    }, function(){
        if ($('body').outerWidth() >= 320) {
            $(this).stop().fadeTo(500, 1);
        }
    });
});

