$(function(){
// Start

// Forms - animations ------------------------------------------------------------------------------------------------

// clears text inputs on page load
$("form input:text").each(
	function(){
		if ($(this).val() !== '') {
			$(this).val("")
		}
	}
)
// animates fading labels

$("form input:text, form textarea")
		.focus(
			function(){
				if ($(this).val() == '') {
					$(this)
						.parent()
						.prev()
						.stop()
						.animate({opacity: '0'}, 300);}
					}
			)
		.blur(
			function(){
				if ($(this).val() == '') {
					$(this)
						.parent()
						.prev()
						.stop()
						.animate({opacity: '1'}, 300);}
					}
			)

// gallery - image loader

$(".thumbnail_link").click(
	function(){
		var new_img_url = $(this).attr("href");
		$("#main_img").attr("src", new_img_url)
		return false;
	}
)

// Finish
});

