// JavaScript Document

$(function(){
	$("div#featuredFrame").carousel( {
 		direction: "vertical", // you can change this to vertical
    	loop: true,
     	pagination: true, // setting this to true adds the pagination 1, 2, 3 etc.
     	autoSlide: true, // automatic rotation between the banners
     	autoSlideInterval: 6100, // how long in miliseconds till next rotation
		delayAutoSlide: 2000,
		effect:"fade",
		animSpeed: 1400
	});
});
