
$j(document).ready(function(){imageOn='url(../design/styles/components/dropdown/images/button2.png)';imageOff='url(../design/styles/components/dropdown/images/button.png)';$j("div.dropDown").click(function(){if($j(this).children("div.dropContent").css('display')=='none'){$j(this).children("div.dropContent").slideDown(400);$j(this).find("div.dropContent").css('width',$j(this).width()+28);$j(this).css('z-index','99999');$j(this).css('background-image',imageOn);}else{$j(this).children("div.dropContent").slideUp(400);$j(this).css('background-image',imageOff);$j(this).css('z-index','1');}});$j("div.dropContent ul li a").click(function(){$j(this).parent().parent().parent().parent().find("span.selected").html($j(this).html());$j(this).parent().parent().parent().parent().css('background-image',imageOff);$j(this).parent().parent().parent("div.dropContent").fadeOut(200);document.getElementById('reason').value=this.innerHTML;});});