// JavaScript Document
<!--
function add2auswahl(db,str,name)
{
	$(function() {
		$.post("/cms/auswahl.php", { action: 'add', db: db, str: str },
		function(data) {
			var options = { to: '#meinkoffer', className: 'ui-effects-transfer' };
			$('#' + name).effect('transfer',options,500);
			$('.kofferlink_' + str).parent().html('<a href="/auswahl.php" style="text-decoration:none;color:gray;">Im Koffer</a>');
			$('.kofferimg_' + str).parent().html('<a href="/auswahl.php"><img src="/images/b_koffer.png" alt="" width="18" height="18" /></a>');
			$('#koffer_' + str).parent().html('<a href="/auswahl.php" style="text-decoration:none;color:gray;"><img src="/images/b_koffer.png" alt="" width="18" height="18" align="absbottom" />&nbsp;&nbsp;Im Koffer</a>');
		});
	});
}

$(document).ready(function(){

	$("ul.dropdown li").dropdown();

});

$.fn.dropdown = function() {

	$(this).hover(function(){
		$(this).addClass("hover");
		$('> .dir',this).addClass("open");
		$('ul:first',this).css('visibility', 'visible');
	},function(){
		$(this).removeClass("hover");
		$('.open',this).removeClass("open");
		$('ul:first',this).css('visibility', 'hidden');
	});

}
-->