/* --- // -------------------------------------------------------
		
		@ /js/footer.js
		
		@ 15.11.2007 uc
		@ alpha 0.1
		
		Diese Datei wird erst am Schluss aufgerufen
		
		Index
		- inputfelder
		- erweiterte Suchoptionen
		
		Changelog:
		
		
------------------------------------------------------- // --- */
	
/* -----------------------------------------------------------------------------
	Inputfelder
----------------------------------------------------------------------------- */
// --- focus/blur ---//
$(":input.hover").each(function(){
	this.onfocus = function(){this.style.backgroundColor = "#f2f2f2";}
	this.onblur = function(){this.style.backgroundColor = "";}
})

/* -----------------------------------------------------------------------------
	Erweiterte Suchoptionen
----------------------------------------------------------------------------- */
$("#filterShow").click(function () {
if ($("#filterSelection").is(":hidden")) {
	 $("#filterSelection").slideDown("fast");
}else{
	$("#filterSelection").slideUp("fast");
}
return false;
 });

// --- Filter gesetzt, dann anzeigen ---//
$("div.showSelection").each(function(){
	 $("#filterSelection").show();
})