$(function() {
	var curTimeout;
	var curDDLTimeout;

	$('.dropdownList .dropdown').hide();
	$('#buckets ul').hide();
	$('.dropdownList > a').bind("mouseenter",
		function() {
			$(this).parent().find('div.dropdown').slideToggle();
		});
	
	$('#buckets > li > ul').bind("mouseenter",
		function() {
			window.clearTimeout(curTimeout);
		}
	).bind("mouseleave",
		function() {
			var cur = $(this).parent();
			curTimeout = window.setTimeout(
				function() {
					if ( cur.find('ul:visible').length > 0) {
						cur.find('ul').slideUp();
					}
				}, 2000
			);
		}
	);
	
	$('#buckets .buttonVideo').bind("mouseenter",
		function() {
		}
	);
	
	$('#buckets > li > a').bind("mouseenter",
		function() {
			window.clearTimeout(curTimeout);
			var cur = $(this).parent();
			if ( cur.find('ul:visible').length == 0)
			{
				$(this).parent().find('ul').slideDown();
			}
		}
	).bind("mouseleave",
		function() {
			var cur = $(this).parent();
			curTimeout = window.setTimeout(
				function() {
					if ( cur.find('ul:visible').length > 0) {
						cur.find('ul').slideUp();
					}
				}, 2000
			);
		}
	);
	
	$("a[rel^='prettyPhoto']").prettyPhoto();

});

