﻿$(function() {
	$("#showcase_left").showcase({
		css: { width: "600px", height: "350px" },
		animation: {interval: 4500, stopOnHover: true, easefunction: "swing", speed: 600, type: "fade" },
		linksOn: "titles", 
		navigator: { position: "top-right",
					 orientation: "vertical", 
					 css: { padding:"2px", margin: "0px 0px 1px 1px" },
					 showNumber: true,
					 item: { 
						 css: { height:"16px",
							   "line-height":"16px",
								"font-size": "11px",
								width:"16px",
								"-moz-border-radius": "0px",
								"-webkit-border-radius": "0px",
								backgroundColor: "#f4f4ee",
								borderColor:"#BFBFB5",
								margin: "5px",
								"text-align": "center",
								"vertical-align": "middle" },
						 cssHover: { backgroundColor: "#FF9900", borderColor: "#BFBFB5"},
						 cssSelected: { backgroundColor: "#05A9E6", borderColor: "#BFBFB5" }
					 }
		},
		titleBar: { enabled: true,
					autoHide: false ,
					cssClass: "titleBar"
				  }
	});
	
	$("#showcase_visit").showcase({
			css: { width: "550px", height: "330px" },
			animation: {interval: 4500, stopOnHover: true, easefunction: "swing", speed: 600, type: "fade"},
			navigator: { position: "top-right",
						 orientation: "vertical", 
						 css: { padding:"1px", margin: "0px 0px 0px 0px" },
						 item: { 
							 css: { height:"5px",
									width:"5px",
									"-moz-border-radius": "0px",
									"-webkit-border-radius": "0px",
									backgroundColor: "#f4f4ee",
									borderColor:"#BFBFB5",
									margin: "5px",
									"text-align": "center",
									"vertical-align": "middle" },
							 cssHover: { backgroundColor: "#007900", borderColor: "#BFBFB5"},
							 cssSelected: { backgroundColor: "#05A9E6", borderColor: "#BFBFB5" }
						 }
			},
			titleBar: { enabled: false }
	});
});

