	Cufon.replace('h1.light_green');
	Cufon.replace('h2');
	Cufon.replace('h3');
	/*Cufon.replace('span.sb_with_icon');*/
	
	$(document).ready(function() {
		$("#featured_scroller").scrollable().circular();
	});
	
	$(document).ready(function() {
		$("#scroller").scrollable({easing: 'swing', size: 10}).circular().autoscroll({autoplay: true, interval: 750});
	});
	
	$(function() {
		$("#cl_accordion").tabs("#cl_accordion div.clo_detail", {tabs: 'h4', effect: 'customEffect', initialIndex: null});
	});

	$.tools.tabs.addEffect("customEffect", function(tabIndex, done) {
		// evaluate if the current tab is already open
		if (this.getPanes().eq(tabIndex).is(":hidden")) {
			//open the pane
			this.getPanes().eq(tabIndex).slideDown(400, done);
		} else {
			//close the pane
			this.getPanes().eq(tabIndex).slideUp(400);
		}
		done.call();
	});
	
	$(function(){
		$('#keyword').focus(function(){
			if($(this).attr('value') == 'Search our products...')
				$(this).attr('value', '');
		});
		
		$('#keyword').blur(function(){
			if($(this).attr('value') == '')
				$(this).attr('value', 'Search our products...');
		});
	});

