$(document).ready(function(){

	$('#ShAdminMenu').mouseover ( function () {
		$(this).stop(true,true).animate ({
			height: 155,
			backgroundColor: '#fff'
		});
	
	});
	
	$('#ShAdminMenu').mouseleave ( function () {
		$(this).stop(true,true).animate ({
			height: 35,
			backgroundColor: '#ccc'
		});
	
	});
	
	$('#events').mouseover (function () {$(this).attr('src','img/button/events_hover.png'),$(this).stop(true,true).animate({marginTop: -10})});
	$('#events').mouseleave (function () {$(this).attr('src','img/button/events.png'),$(this).stop(true,true).animate({marginTop: 0})});

 


});
