//controls the cs roundups.

	function clearDefault(el) 
	{
		if (el.defaultValue==el.value) el.value = "";
	}

	function selectIt(url)
	{
		var landing = url.options[url.selectedIndex].value; // isolate the target url
		window.open(landing); // pop the window
		url.selectedIndex = 0; // reset the form
		urchinTracker('/roundup/classic_cocktails');
	}
	
	function selectIt2(url)
	{
		var landing = url.options[url.selectedIndex].value; // isolate the target url
		window.open(landing); // pop the window
		url.selectedIndex = 0; // reset the form
		urchinTracker('/roundup/behind_the_velvet_rope');
	}	
