$(function() {
			$("#showcase_left").showcase({
                css: { width: "448px", height: "125px" },
				animation: { 
								interval: 4500, 
								stopOnHover: true, 
								easefunction: "swing",
								speed: 600
							},
				images: [/*        ... imagelist ...    */],
				navigator: { 
							position: "bottom-right",
                            css: { 
									padding:"0px",
									margin: "0px 1px 1px 1px"
								 },
                            showNumber: true,
                            item: { 
                                 css: { 
										 height:"16px", 
										 "line-height":"16px", 
										 width:"16px", 
										 "-moz-border-radius": "0px", 
										 "-webkit-border-radius": "0px", 
										 backgroundColor: "#00448C", 
										 borderColor:"#323232", 
										 margin: "1px", 
										 "text-align": "center",
										 color:"#FFF",
										 "vertical-align": "middle"
								 		},
                                 cssHover: { 
								 		 		backgroundColor: "#ababab", 
												borderColor: "#323232",
												color:"#000"
										   },
                                 cssSelected: { 
								 				backgroundColor: "#dadada",
												borderColor: "#323232",
												color:"#000"
											  }
                             }
                },
                titleBar: { enabled: false }
			});

			$("#showcase_right").showcase({
                animation: { type: "fade" },
                titleBar: { autoHide: false },
                navigator: { autoHide: true }
            });

			SyntaxHighlighter.all();
		});
