$(document).ready(function() {
	//cufon
//	Cufon.replace('h1, h2, h3, h4, label');

	//scrollable (homepage showroom)
	$(".scrollable").scrollable({
		circular: true,
		speed: 520
	}).autoscroll({
		interval: 4000
	});

	//colorbox
	if($('.gallery-th a').length > 0) {
		$('.gallery-th a').colorbox();
	}

	//scroll - back to top
	if($('#return_top').length > 0) {
		$('a[href=#top]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	}


});

