$(document).ready(function() {
   	if(jQuery('.projectthumbs').children().size()>3){
		jQuery('.projectthumbs').addClass('jcarousel-skin-smc');
		jQuery('.projectthumbs').jcarousel();
	}
	// Use this example, or...
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	
			jQuery('#project-images').jcarousel();
			$('#project-images a').lightBox();
	
});

function createMenu(openTab){
	var myBox = $$('#subNav ul li.projCategory h4');
	var myBoxOpen = $$('#subNav ul.projects');
	myBoxOpen.setStyle('display', 'block');
	var myEffect = new Accordion(myBox, myBoxOpen, {
	show: openTab,opacity: false, alwaysHide: true,
	onActive: function(toggler){
		toggler.setStyle('color', '#ff681e');
		toggler.setStyle('font-weight', 'bold');
		toggler.setStyle('border-bottom', '1px solid #232323');
	}, onBackground: function(toggler){
			toggler.setStyle('color', '#DFDFDF');
			toggler.setStyle('font-weight', 'normal');
			toggler.setStyle('border', 'none');
	}}, $('subNav'));		
}