$(document).ready(function(){
						   
$('.g a')
		.css( {backgroundPosition: "0px 6px"} )
		.mouseover(function(){
			$(this).stop().animate({ backgroundPosition:"(0px -30px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px 6px)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "0px 6px"})
			}})
		})

$('a#curr')
		.css( {backgroundPosition: "0px -30px", color: "#0269b4" } )
		.mouseover(function(){
			$(this).css( {backgroundPosition:"(0px 6px)", color: "#FFFFFF"}).stop().animate({ backgroundPosition:"(0px 6px)" }, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px -30px)"}, {duration:250, complete:function(){
				$(this).css({backgroundPosition: "0px -30px", color: "#0269b4" })
			}})
		})

});

var browser		= navigator.appName
var ver			= navigator.appVersion
var thestart	= parseFloat(ver.indexOf("MSIE"))+1 //This finds the start of the MS version string.
var brow_ver	= parseFloat(ver.substring(thestart+4,thestart+7)) //This cuts out the bit of string we need.

if ((browser=="Microsoft Internet Explorer") && (brow_ver < 7)) //By default the min. IE ver is set to 6. Change as desired.
	{
	window.location="http://www.ultimadesign.net"; //URL to redirect to.
	}
