$(document).ready(function(){
	// Gallery slideshow
	$('div.G3').galleryScroll({
		slideNum:'div.s1',
		autoSlide:4000
	});
	
	// Search bar
	$('#head-section form input[name=q]').focus(function(e) {
		if ($(this).val() == 'Search') {
			$(this).val('');
		}
	});
	$('#head-section form input[name=q]').blur(function(e) {
		if (!$(this).val()) {
			$(this).val('Search');
		}
	});
	
	// Consultation zip search
	$('#sidebar form input[name=zip]').focus(function(e) {
		if ($(this).val() == 'Enter zip code') {
			$(this).val('');
		}
	});
	$('#sidebar form input[name=zip]').blur(function(e) {
		if (!$(this).val()) {
			$(this).val('Enter zip code');
		}
	});
	
	// Home page video (Non-youtube, requires swfobject)
	// Create flash interface, initialize w/ params parsed out of URL from Turk	
	// if ($('#video')) {
	// 	swfobject.embedSWF(
	// 		'almsteadVideo.swf', 'video',
	// 		'459', '290',
	// 		'9', false,
	// 		{}, // flash vars
	// 		{'allowscriptaccess': 'sameDomain', 'allowFullScreen': 'false'}, // params
	// 		{} // attrs
	// 	);
	// }
	
});