$(function()
{
		$('#search').originalValue();
		$('#ctl00_ctl07_tbWord').originalValue();

		// First word wrapper
		//$('#contentwrapper>p, body.frontpage #content .content>p:not(.firstWord), body.frontpage #content .content>.newslist>p:not(.firstWord)').each(function()
		//{
			//if( !this.firstChild ){ return true; }
			//var node = this.firstChild,
			//searchArray = [];
			//while( node.nodeType!==3 || node.nodeValue==='' )
			//{
				//node=searchArray.indexOf(node.firstChild)<0&&node.firstChild||node.nextSibling||node.parentNode;
				//if(node===this){return true;};
				//searchArray.push(node);
			//};
			//if( node.nodeValue.length < 3 || !/ /.test(node.nodeValue) )
			//{
				//return true;
			//};

			//node.nodeValue = '|First-Word:'+node.nodeValue;
			//node=node.parentNode;
			//$(node).html( $(node).html().replace(/\|First-Word:([^ ]+) /, '<span class="firstWord">$1</span> ') );
		//});

		$('#tabs a').click(function()
		{
			$(this).addClass('selected').parent().parent().find('a.selected').not(this).removeClass('selected');
			$(this.hash).show().siblings('.tabContent').hide();
			return false;
		}).filter(':first').click();
});