$(document).ready(function() {
	$("#content #filter form select").styleSelect({styleClass: "selectMenu",speed: 'fast'});
	$("select.s").styleSelect({styleClass: "selectMenuS",speed: 'fast'});
	$("select.m").styleSelect({styleClass: "selectMenuM",speed: 'fast'});

	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});


	$("#content form.pagination select").change(function(){
// 		var url = $('#content form.pagination select.m').attr('value') + '/' + $('#content form.pagination select.s').attr('value');
// 		top.window.location = url;
		$('#content form.pagination').submit();
	});

});



