$().ready(function ()
{
//	var so = new SWFObject("/img/derekallard_header_v2.swf", "350", "350", "6", "#FFF");
//	so.addParam("wmode", "transparent");
//	so.write("header_holder");


	if ($('#comment') && $('#name')) {
		$('#comment').focus();
	}

	$('#keywords').focus(function () {
		$('#keywords').val('');
	});

	// initiate fancy box
	$("a[rel]").fancybox({'overlayShow': true });

	/**
	* fix for IE < 7 since it doesn't properly handle either
	* (1) the CSS box model; or 
	* (2) position: absolute
	*/
	if ( document.all && !window.XMLHttpRequest ) {
		$('#content_sub').css('position', 'absolute');
		$('#content_sub').css('top', '350px');
	}
});

window.onscroll = function()
{
	if( window.XMLHttpRequest ) {
		if (document.documentElement.scrollTop > 350 || self.pageYOffset > 350) {
			$('#content_sub').css('position', 'fixed');
			$('#content_sub').css('top', '0');
		} else if (document.documentElement.scrollTop < 350 || self.pageYOffset < 350) {
			$('#content_sub').css('position', 'absolute');
			$('#content_sub').css('top', '350px');
		}
	}
}
