$(document).ready(function(){

	$("#slideshow").showcase({ 
		images: [],
		linksOn: "images",
		css: {	position: "relative", 
				overflow: "hidden",
				border: "none",
				width: "955px",
				height: "250px"
		},
        animation: { autoCycle: true,
                     stopOnHover: false,
                     interval: 4000,
                     speed: 700,
                     easefunction: "swing",
                     type: "fade" 
        },
		navigator: { css: {	border: "none",
					        padding: "0 10px 12px 0",
							margin: "0px",
							position: "absolute", 
			            	"z-index": 1003
					},
					position: "bottom-right",
					orientation: "horizontal",
					autoHide: true,
					showNumber: false,
					showMiniature: false,
					item: { cssClass: null,
					 		cssClassHover: null,
					     	cssClassSelected: null,
							css: {	
								color: "#fff",
								"text-decoration": "none",
                                "text-align": "center",
								"-moz-outline-style": "none",
								width: "14px", 
								height: "14px",
								lineHeight: "14px",
								verticalAlign: "middle",
								backgroundColor: "#15929f",
								margin: "0px 5px 0px 0px",
								border: "none",
								"-moz-border-radius": "none",
								"-webkit-border-radius": "none" 
							},
							cssHover: {
								backgroundColor: "#15929f",
								border: "none" 
							},
							cssSelected: {	
								backgroundColor: "#fff",
								border: "none" 
							}
					}
        },
		titleBar: { enabled: true,
					autoHide: true,
					position: "bottom",
		            cssClass: null,
		            css: { 	opacity: 1.0,
		        	   	   	color: "#ffffff",
		                   	backgroundColor: "#321d5a",
		                   	height: "30px",
						   	padding: "10px 0 0 10px",
		                   	fontColor: "#fff",
		                   	fontStyle: "normal",
		                   	fontWeight: "normal",
		                   	fontSize: "14px" 
		            } 
		}	 
	
	});//closes showcase

});//closes function
	
