$(document).ready(function () {

	$("#scrolling_gallery").jcarousel({
		wrap: 'circular',
		scroll: 1
	});

	// attach image popups to any gallery sized image
	$("img[src*=renderGallery]")
		.imagePreview();

	$("img[src*=renderThumbnail]")
		.imagePreview();
		
	// attach image thumbnail popups to any studio link
	
	/*
	$("a[href*=images/studio/]")
		.imageThumbnail();
	*/
	
	$("#studio a[href*=images/view/]")
		.imageThumbnail();
	
	$("#front_tabs > ul").tabs();

	$("a.tooltip").tooltip({
	   bodyHandler: function() {
     		var attr = $(this).attr("href");
	     return $(attr).html();
	   },
	   showURL: false
	})
	
	$("#studio .create .progress").boxToggle();
});

