$(document).ready(function(){

	$('#categorySelect').jcombox({ fn: redirectMe });

});

Shadowbox.init({
	players: ['iframe']
});

function redirectMe(){ 
	var category = $('#category').jcSelected();
	window.location='?category='+category;
	return false;
}
