$(document).ready(function() {
	$("#menuHbtn2").css("background","url(/images/header/m2_a.gif)");
	$("#menuHbtn2").unbind();
        sortSelect();
        ascSelect();
});

function sortSelect() {
	dropdownIndex = document.getElementById('sort_select').selectedIndex;
	dropdownValue = document.getElementById('sort_select')[dropdownIndex].value;
	//alert(sort_key);
	$('#sort_hidden').val(dropdownValue);
}

function ascSelect() {
	dropdownIndex = document.getElementById('asc_select').selectedIndex;
	dropdownValue = document.getElementById('asc_select')[dropdownIndex].value;
	$('#asc_hidden').val(dropdownValue);
}

function searchPage(page) {
	document.forms['search_form'].action = document.forms['search_form'].action + '/page/' + page;
	document.forms['search_form'].submit();
}