jQuery(document).ready(function() {
	$('#slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

	$('.ad-gallery').adGallery({
		display_next_and_prev: false, // Can you navigate by clicking on the left/right on the image?
  		display_back_and_forward: false, // Are you allowed to scroll the thumb list?
  		cycle: true // If set to false, you can't go from the last image to the first, and vice versa
	});
	
	$('.blankable').focus(function() {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	
	$('.blankable').blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	}); 	

});

