
(function($){
	$.prepare = function(){
		jQuery('#goto-volume select').bind('change', function(){
			var val = jQuery(this).val();
			if (val !== '') {
				window.location.href = jQuery(this).val();
			}
			return false;
		});
	};
})(jQuery);

jQuery(document).ready(function(){
	jQuery.prepare();
});

