$(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);
	});
	
	//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'; 	
});



