//сделать универсальную переключалку
$(document).ready(function(){
	$('.number_on_page').change(function(){
        var date = new Date();
        var href = $(this).attr('href');
        date.setTime(date.getTime() + (72 * 3600000));
        val = $(this).val();
		jQuery.cookie('num_on_page', val, { path: '/', expires: date });
		window.location.href = href;
	});
});
