$(document).ready(function() {
 /*$("a.videoThumb").fancybox({ 
		'hideOnContentClick': true,
		'frameHeight':348,
		'frameWidth':428
	}); 
	
	$("a.expanded").click(function(){
		var expanderID = $(this).attr("id");
		$("li."+expanderID).animate({height:"0px"});
		$(this).removeClass("expanded");
	});*/
	/*
	$("a.expander").click(function(){
		var clickedExpander = $(this);
		var expanderID = $(this).attr("id");	
		if($(this).hasClass("expanded") == false){
			var expanderHeight = $("li."+expanderID+" ul").outerHeight(true);
			$("li."+expanderID).animate({height:+expanderHeight+"px"},function(){
				if(clickedExpander.hasClass("lower") == true){
					var outerUl = clickedExpander.parent().parent();
					var newHeight = outerUl.outerHeight(true);
					outerUl.parent().animate({height:+newHeight+"px"});
				}
			});
			$(this).addClass("expanded");
		}else{
			$("li."+expanderID).animate({height:"0px"},function(){
				if(clickedExpander.hasClass("lower") == true){
					var outerUl = clickedExpander.parent().parent();
					var newHeight = outerUl.outerHeight(true);
					outerUl.parent().animate({height:+newHeight+"px"});
				}
			});
			$(this).removeClass("expanded");
		}
		return false;
	});
	*/
	//$.smoothAnchors("fast");
	
});