// JavaScript Document
//drop down menu
$(document).ready(function(){ 
// initialize scrollable
 	$(".scrollable").scrollable({speed: 500});
	$("ul.sf-menu").superfish(); 
	$("a.youtube").click(function() {
		 $.fancybox({
		  'padding'             : 0,
		  'autoScale'   : false,
		  'transitionIn'        : 'none',
		  'transitionOut'       : 'none',
		  'title'               : this.title,
		  'width'               : 680,
		  'height'              : 495,
		  'href'                : this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
		  'type'                : 'swf',    // <--add a comma here
		  'swf'                 : {'allowfullscreen':'true','wmode':'transparent'} // <-- flashvars here
		  });
		 return false;

	});
$(".lightbox").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});	
});













