$(function() {

	//Slideshow
	$('#slideshow').cycle('fade');

	$(".tickets_email").focus(function() {
		if ($(this).val() == "your@email.com") {
			$(this).val('');
		}
	});

	$('.lightbox').lightBox();
	
});