/* Coding by Aykut Demirel 17.08.09 */

$(document).ready(function(){
		$('div.inactiveLeft').css('background-position','-225px 0px');
		$('div.inactiveLeft a').hover(
		function(){
				$(this).parent().stop().animate({backgroundPosition:'0px 0px'},500);
			},
		function(){
				$(this).parent().stop().animate({backgroundPosition:'-225px 0px'},500);
			});
});
