var $jQuery = jQuery.noConflict();
$jQuery(document).ready(function() {
	// find the div.fade elements and hook the hover event
	this.defaults = {
		 scroller: {
		   interval:  0,    // Dont touch !
		   refresh:   150,  // Refresh Time in ms
		   direction: "left", // down,right,left,up
		   speed:     10,    // Set the Scroller Speed
		   id:        "#box1_container",
		   cont_id:   "#box1_content"
		 }
		}
$jQuery(function() {
		$jQuery('#scroll').cycle({ 
				fx:     'fade', 
				speed:  '700', 
				timeout: '7000',  
				pause:  true
			});	
	});
});
