var $j = jQuery.noConflict();


$j(document).ready(function(){
	
	$j("#lang-sel-button").click(function () {
	    $j("#lang-sel-frame").slideToggle("slow",checkstate);
	  });
	  
	function checkstate() {
 	  $j("#lang-sel-button").css("background", ($j("#lang-sel-frame").css("display") == "block") ? "#E8EAE9 url(/fileadmin/templates/img/pfeil_runter.gif) no-repeat scroll right center" : "#E8EAE9 url(/fileadmin/templates/img/pfeil_links.gif) no-repeat scroll right center");
	}

});
