// JavaScript Document
jQuery(document).ready(function($){
	
	// Alter the select box on the home page so it can be styled
	//$("#select_how").sSelect()
	
	// wrap all hr tags in a div for IE display
	$('hr').wrap("<div id='rule'></div>");
	
	// Add pointer to menus with children
	$('.menu li li ul').closest('li').addClass('menu_pointer');
	
	// Launch the image gallery
	$('img[rel="#launch_tour"]').overlay({
		closeOnClick: false
	});
	
	// Control Slider Gallery// Initialize scrollable area
	var scroll_api = $('#slide_content').scrollable({
		size: 1,
		keyboard: false,
		clickable: false,
		item: "div",
		api: true
	});
	
	// Activate the how do I dropdown
	$('#page_id').click(function() {
		var value = $(this).val();
		if (value != "") {
			var url = "http://cityofkaty.com/?page_id=";
			url = url + value;
			window.location = url;
			
		}
	});
    
});