// JavaScript Document
$(document).ready(function(){
	$(".reference-image-preview a").fadeTo(0, 0.5);
	$(".reference-image-preview a").hover(
			function(){
				//alert("on");
				$(this).fadeTo('fast',1);
				$(this).parent().siblings(".tooltip").fadeIn('fast');
			},
			function(){
				//alert("off");
				$(this).fadeTo('fast',0.5);
				$(this).parent().siblings(".tooltip").fadeOut('fast');
			}
	);
	
});
