
//jquery.slideshow init ------------------------------------------------------

$(document).ready(function() {
	$('.slideShow').slideShow({
		interval: 3,
		slideClick: function(slideShow) {
			if (slideShow.mouse.x > slideShow.options.slideSize.width / 2) {
			slideShow.next();
			} else {
			slideShow.previous();
			}
		}
	});
	$('.slideShow .navigation li:first a').addClass("selected");
});




