//
// main jQuery file for Rosewood Restaurant
//

$(document).ready(function(){

	// sets up the image rotating banner at the top of each page
	$('.banner').cycle({
		speed: 1000,
		speedIn:  1000,
		speedOut: 2000,
		pause: 3
	});
	
	// set up the rotating gallery on the events page
	$('#gallery').cycle({
		speed: 3000,
		speedIn:  1000,
		speedOut: 2000,
		pause: 1,
		next: '#gallery'
	});
	$('.gallery').fancybox({
		overlayColor: '#000',
		overlayOpacity: .6,
		centerOnScroll: true,
		width: 600,
		height: 400
	});
	

	// selects/populates text inputs
	$('input.text, textarea').focus(function(){
		$(this).select();
	}).blur(function(){
		if(!$(this).val()){
			$(this).val($(this).attr('title'));
		}
	});

});

