$(document).ready(function() {
	$(".item img").mouseover(function() {
		$(this).animate({opacity:.15}, 200);
	});
	$(".item img").mouseout(function() {
		$(this).animate({opacity:1}, 350);
	});
	$(".item_last img").mouseover(function() {
		$(this).animate({opacity:.15}, 200);
	});
	$(".item_last img").mouseout(function() {
		$(this).animate({opacity:1}, 350);
	});
	
	//form setup defaults
	$(".form_name").val(" first / last name:");
	$(".form_name").focus(function() {
		$(this).val("");
	});
	$(".form_name").blur(function() {
		if ($(this).val == "") {
			$(this).val(" first / last name:");
		}
	});
	
	$(".form_email").val(" your email:");
	$(".form_email").focus(function() {
		$(this).val("");
	});
	$(".form_email").blur(function() {
		if ($(this).val == "") {
			$(this).val(" your email:");
			}
	});
	
	//tooltip
	$(".item a").tooltip({ 
		 track: true, 
		 delay: 0, 
		 showURL: false,
		 extraClass: "pretty", 
		 fixPNG: true, 
		 showBody: " - ", 
		 fade: 250 
	});
	var tooltip = new Image();
	tooltip.src='../img/bkgr/tooltip.png'; 	
});


