$(function(){

  $('.photo_gallery').find('a').cycle();
  $('#headerImages').cycle();
  
  $('.dropdown li').mouseover(function(){
	$(this).css('background-color', '#465B6C');
  }).mouseout(function(){
	$(this).css('background-color', '#7C8C99');
  });
  
  $('#search_button').click(function(){
	var query = $('#search_form').find("input[@name='query']").val();
	switch($('#search_form').find("input[@name='search']:checked").val()){
		case 'encore':
			window.open('http://encore.oslri.net/iii/encore/search/C|S' + query + '|Orightresult|U1?lang=eng&suite=pearl');
		break;
		case 'classic':
			window.open('http://catalog.oslri.net/search/a?searchtype=t&searcharg='+query+'&SORT=D&searchscope=1&submit.x=24&submit.y=17&submit=Submit');
		break;
		default: // Site Search
			window.location = '/search.php?query=' + query + '&search=1';
		break;
	}
	
	return false;
  });
  
  $('#contact_form').validate({
	submitHandler: function() {
		$.post('/contact.php', $('#contact_form').serialize(), function(data){
			alert(data);
			$('#contact_form').resetForm();
			return false;
		});
	}
  });
 
});
