/* CSS Document */

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:200px;	width: 550px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 10px; right: 0px;
	width: 550px; height:20px;
	z-index:auto; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 20px;
	 /*-- add background url --*/
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 0px;
	text-decoration:none;
}
.paging a.active {
	
}
.paging a:hover {}Step 3. Setting up jQuery
