jQuery(document).ready(function(){
	
	jQuery('#range-prev').click(function(){		
		jQuery('#range-label').css('margin-top','0px');
	});
	
	jQuery('#range-next').click(function(){	
		jQuery('#range-label').css('margin-top','-30px');		
	});
	
});
