	  $(document).ready(function(){
	   $('li').mouseover(function() {
		  $(this).find('a').animate({
			opacity: 0.80,
			marginTop: 1,
			color:'#5f294f'
		  }, 600, function() {
			// Animation complete.
		  });
		   $(this).find('div').animate({
			opacity: 1
		  }, 600, function() {
			// Animation complete.
		  });
		});
		$('li').mouseout(function() {
		  $(this).find('a').animate({
			opacity: 1,
			marginTop: 5
		  }, 400, function() {
			// Animation complete.
		  });
		  $(this).find('div').animate({
			opacity: 0
		  }, 400, function() {
			// Animation complete.
		  });
		});
		
		if($.browser.msie)
		{
			if($.browser.version<8)
			{
				alert(" You are using older version of Internet Explorer, Please install a new version to use better our site. ");
			}
		}
	});
