$(document).ready(function() {

	$('ul.sf-menu').superfish();
	Cufon.replace('#leftcol h1, #leftcol h2, #rightcol h2, #footer h3');
	Cufon.replace('.cufon', {
		hover: true
	});

	$('#searchform .textbox').focus(function() {
		$(this).parent().addClass('searchformfocus');
		if ($(this).val() == "Search Site") {
			$(this).val('');
		}
	})

	$('#searchform .textbox').blur(function() {
		$(this).parent().removeClass('searchformfocus');
		if ($(this).val() == "") {
			$(this).val('Search Site');
		}
	})

	var logo = $.cookie('logo');

	if (logo == undefined) {

		$.cookie('logo', '1', {
			path: '/',
			expires: 1
		});

		$('#logo').remove();
		$('#header').prepend('<object id="logo" width="300" height="100"><param name="movie" value="flash/logo.swf"><embed src="flash/logo.swf" width="300" height="100"></embed></object>');
	}


    $(window).scroll(function() {

        if ($(window).scrollTop() > 80) {
            $('#nav').css({'position': 'fixed', 'top': '0px'});
        } else {
            $('#nav').css({'position': 'absolute', 'top': '80px'});
        }

    });



});

