/* IE6 detection, is set to true within conditional comment */
var ie6 = false;

$(document)
.ready(
	function()
	{

	/*** General behaviours ***/
	/*************************/


		/* Add target attribute on external links */
		$("a[href^=http://]")
		.click(
			function()
			{
				if (this.host.indexOf(window.location.hostname) == -1)
				{
					$(this).attr("target","_blank");
				}
			}

		);


	
	/*** Visual enhancements ***/
	/**************************/


	/*** Form behaviours ***/
	/***********************/


	}
);