// JavaScript Document

$(document).ready( function(){
 
	
	$('.slideshow').jcarousel({
		wrap: "both",
		scroll: 1
	});
	
	$(".showAll").click( function(){
		
		$(this).prev().slideToggle("medium");
		$(this).toggleClass("open");
		return false;

	});
	
	$("#subnav .page-item-32").append($("#subsubnav.projects"));
	$("#subnav .page-item-35").append($("#subsubnav.products"));
	
	$("#subsubnav").show();
	
	$(".fancybox").fancybox({
		padding: 10,
		overlayColor: '#000',
		overlayOpacity: 0.6

	});
	
});

function changeSlide(){
	
	if($("#slideshow .active").next().size() > 0){
		$("#slideshow .active").fadeOut().removeClass("active").next().fadeIn().addClass("active");
	} else {
		$("#slideshow .active").fadeOut().removeClass("active");
		$("#slideshow .slide:first-child").fadeIn().addClass("active");
	}

}
