$(function() {

	jQuery.each($("#categories_block_left ul li"), function() {
		if($(this).find('ul').length>0) {
			$(this).find('a:first').bind('click', function() {
				$(this).parents('li:first').find('ul:first').toggle();
				return false;
			});
		} else {
			$(this).bind('click', function(e) {
				e.stopPropagation();
				e.preventDefault();
				location.href = $(this).find('a:first').attr('href');
				
			});
		}
	});
	
	$( 'div#categories_block_left' ).scrollFollow();

	$('#payUpBtn').hover(
		function() { $(this).addClass('over'); },
		function() { $(this).removeClass('over'); }		
	);

});

