function mySlideShow(){
	var scrollnb =  $(".slider .carouselCtn ul li").size() %10;

	$(".slider .carouselCtn").jCarouselLite({
		btnNext: ".righttctrl",
		btnPrev: ".leftctrl",
		visible: 10,
		scroll:1,
		circular:false
	});

	$('.slider .prev').mouseover(function(){
		$(this).addClass('ctrl_on_left');
	});
	$('.slider .prev').mouseout(function(){
		$(this).removeClass('ctrl_on_left');
	});

	$('.slider .next').mouseover(function(){
		$(this).addClass('ctrl_on_right');
	});
	$('.slider .next').mouseout(function(){
		$(this).removeClass('ctrl_on_right');
	});
	$('.slider .pause').mouseover(function(){
		$(this).addClass('pause_on');
	});
	$('.slider .pause').mouseout(function(){
		$(this).removeClass('pause_on');
	});
	$('.slider .play').mouseover(function(){
		$(this).addClass('play_on');
	});
	$('.slider .play').mouseout(function(){
		$(this).removeClass('play_on');
	});

	$('.slider .play').click(function(){
		$(this).hide();
		$('.slider .pause').show();
		$('.slider .pause').addClass('pause_on');
	});
	$('.slider .pause').click(function(){
		$(this).hide();
		$('.slider .play').show();
		$('.slider .play').addClass('play_on');
	});
}

$(document).ready(function() {
	if ($('.slider').length){
		mySlideShow()
	}
	$("a.popinMention").popin({
		width:800,
		height:400,
		className: "mypopin",
		loaderImg : './images/busy.gif'
	});
	$("a.popinCollection").popin({
		width:1060,
		height:560,
		className: "mypopin",
		loaderImg : './images/busy.gif'
	});
	$("a.popinMap").popin({
		width:670,
		height:502,
		className: "mypopin",
		loaderImg : './images/busy.gif'
	});
});
