// JavaScript Document

$(function() {

	$("ul.tabs").tabs("div.panes > div", {
		/* tabs configuration goes here */
	
		// first configuration property
		event: 'click',
	
		// another property
		effect: 'fade'
	
		// ... the rest of the configuration properties
	});
	
	$(".slidetabs").tabs(".images > div", {
		effect: 'fade',
		// start from the beginning after the last tab
		rotate: true
	}).slideshow({autoplay: true, interval: 9000});

	$(".colorbox").colorbox({maxWidth:800, maxHeight:600});
	$(".tommy-vid").colorbox({iframe:true, innerWidth:480, innerHeight:385});


});
