/*
	author - jon @ pi-squared
 	superior web design and development since 2001
	- www.pi-squared.co.za
*/

$().ready(function(){
	/*
	$('a[href!=#]').each(
		function() {
			$(this).css('outline', '5px solid #f00');
		}
	);
	*/

	/* who's last */
	$('.navigation li:last, #foot li:last').addClass('omega');

	/* superfish */
	$('.sf-menu').superfish(
		{
			animation: {opacity:'show'},
			delay: 750,
			speed: 'fast',
            autoArrows: false,
            dropShadows: false
		}
	);

	/* auto hide */
	$('#head .siteSearch input.text').focus(function() {
	    $(this).val("");
	});
	
	/* make it so */
	$(window).load(
		function () {
			/* ie6 */
			$('body').addClass('hasJS');
		}
	);

});
