if( window.jQuery )
{

	$(document).ready(function() {	
		if( $("#sidebar .subscribe-sidebar") ) {
			var elheight = $("#sidebar .subscribe-sidebar li").height();
			$("#sidebar .subscribe-sidebar li").mouseover(function(e) {
					e.stopPropagation();
					$(this).animate({'height' : '60px' }, {queue: false, duration: 150});
					
			  }).mouseout(function(e) {
					e.stopPropagation();
					$(this).animate({'height' : elheight }, {queue: false, duration: 150});
			  });
		};
		
	});

};
