function toggle(obj) {
var el = document.getElementById("drop");
if ( el.style.display != 'block' ) {
el.style.display = 'block'; 
obj.style.backgroundPosition='0px 100%';

}
else {
el.style.display = 'none';
obj.style.backgroundPosition='0px 0px';
}


}


/*$(document).ready(function() {

$(".menu-item-uninor").click(function() {
$("#drop").toggle();
$(".menu-item-uninor").toggleClass("menu-open");
});

$("#drop").mouseup(function() {
return false
});
$(document).mouseup(function(e) {
if($(e.target).parent("a.menu-item-uninor").length==0) {
	
$(".menu-item-uninor").removeClass("menu-open");
$("#drop").hide();
}
});



}); */

