var $j = jQuery.noConflict();

$j(document).ready(function() {
	$j("a.fancy").fancybox({
		'titleShow' : false
	});
	$j('.box a').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ", 
		fade: 250 
	});
	$j("#photos div.thumb a.second").click(function(){
	   $j("#photos div.large a").hide();
	   $j("#photos div.large a.second").show();
	   return false;
	});
	
	$j("#photos div.thumb a.first").click(function(){
	    $j("#photos div.large a").hide();
	    $j("#photos div.large a.first").show();
	    return false;
	});
	
	if ($j('#photos a.second').attr('href').length == 0) {
		$j('#photos a.second').attr('href',$j('#photos a.first').attr('href'));
	}
});
