$(document).ready(function() {
	$('#stateselect').change(function() {
		var position = $('a[name='+$(this).val()+']').offset().top;
		$('html').animate({scrollTop:position});
	});
	$(function() {
		var galleries = $('.ad-gallery').adGallery();
	});
	$("table.zebra tr").mouseover(function() {
		$(this).addClass("over");
	});
	$("table.zebra tr").mouseout(function() {
		$(this).removeClass("over");
	});
	$("table.zebra tr:nth-child(odd)").addClass("odd");
	$("table.zebra tr:nth-child(even)").addClass("even");
	$('#printButton').click(function() { window.print(); });
});
