// JavaScript Document

$(document).ready(function(){
	$('#image_wrap').cycle({ 
    	fx:     'fade', 
    	speed:  'slow', 
    	timeout: 4000, 
    	next:   '#next', 
    	prev:   '#previous' 
	});
	
	
	$('#scrollad').cycle({ 
    	fx:     'scrollUp', 
    	speed:  'slow', 
    	timeout: 3000, 
    	next:   '#nextad' 
	});
	
});