function goToByScroll(id){
   	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}

$(document.body).ready(function() {
	$('#chart select.quantity').change(function() {
		document.location.href = $('base').attr('href') + $(this).val();
	});	


	$('ul#subcat a[href*="#"]').click(function() {
		var href = $(this).attr('href');
		var temp = href.split('#');
		var id = temp[temp.length-1];
		
		goToByScroll(id);
		return false;
	});

});



