/*($(function() {
	$('ul.nav li:first-child').addClass( 'nobr' );
});

$(function() {
	var $form = $('#form-search-school');
	if ( !$form.size() ) return false;
	
	$form.submit(function() {
		var a = $form.find('select.program').val();
		if ( a == '0' ) {
			alert('Select Program First');
			return false;
		}
		
		//var b = $form.find('select.degree option:selected').val();
		//if ( b == '0' ) {
			//alert('Select Degree First');
			//return false;
		//}
		
		$form.find('input[name=cat]').val(a + ',' + b);
		
		return true;
	});
});

function show() {
  alert("You Should be loggin to see the search result");
}
 */
