// JavaScript Document
var $j = jQuery.noConflict();
$j(document).ready(function() {
	$j(".three > :nth-child(3n+3)").css({'margin-right' : 0, 'background' : 'none'});
	$j("#sliderwrap .items").cycle({ 
		fx: 'scrollHorz',
		timeout: 8000,
		speed:  1500,
		pause: true,
		prev:   '#back', 
    	next:   '#forward'
	});
});

