
// JavaScript Document


$(document).ready(function(){
 		 $("dd").filter(":not(.work)").hide();
		 $(".menu a").click(function(){
			$(this).parent().next().slideToggle("slow")
			.siblings(".menu a:visible").slideUp('fast');
			return false
	 	 });
		 
		 
		 $(".tap",".doritos",".website").hide();
		 $("#tap_button a").click(function(){
			$(this).parent().next().slideToggle("slow");
			return false
	     });
		 $("#doritos_button a").click(function(){
			$(this).parent().next().slideToggle("slow");
			return false
		 });
		 $("#website_button a").click(function(){
			$(this).parent().next().slideToggle("slow");
			return false
		 });
	 });

//fancybox stuff

$(document).ready(function() {
	
	$("a#video").fancybox({
		'frameWidth': 550,
		'frameHeight': 400,
		'zoomSpeedIn':	300, 
		'zoomSpeedOut':	300,
		'hideOnContentClick': false
	});
	$("a.fancybox").fancybox({
		'zoomSpeedIn':	300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		false
	});
});