// instead of $ use jQuery as
var $j = jQuery.noConflict();

 // When the document loads do everything inside here ...
$j(document).ready(function(){				   
			
	// Home Scrollers		
	$j('.home-scroll-one').cycle({
		fx: 'scrollRight',
		speed: 1000,
		timeout: 5000,
		slideExpr: 'div',
        cleartypeNoBg: true
	});
		
});

