var $j = jQuery.noConflict();

$j(document).ready(function() {
	$j("#side-bar .box ul").hide();
	$j("#side-bar .box ul.active").show();
	$j("#side-bar h3").click(function(){
		$j(this).next("#side-bar .box ul").slideToggle(500);
	});
	
	$j(function(){
		$j(".jqzoom").jqzoom();
	});
	
	$j("a.fancy").fancybox({
		'titleShow': false
	});
});
