
$(document).ready(function()
{
	$('.left a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -360px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300})
		})
	$('.left a.menuactive')
		.css( {backgroundPosition: "0 -360px"} )
		/*.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -320px)"}, {duration:500})
		})*/
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 -360px)"}, {duration:300})
		})
	// jQuery Tools Overlay
	$("img[rel]").overlay();
	$("a[rel]").overlay();
});

