$(document).ready(function() {
	$("a#big_link").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});

	$("a#fancybox").fancybox();
	$("#inline").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'

	});

	$("input[type=text], textarea").each(function() {
		$(this).focus(function() {
			if ($(this).val() == this.defaultValue)
				$(this).val("");
		});

		$(this).focusout(function() {
			if ($(this).val() == "")
				$(this).val(this.defaultValue);
		});
	});
});
function changeIt (location) {
	$("#bigSRC").attr("src",location);
	$("#big_link").attr("href",location);
}
