// JavaScript Document

var newwindow;
function pop(url)
{
	newwindow=window.open(url,'name','toolbar=yes,scrollbars=yes,location=yes,status=yes,menubar=yes,resizable=yes, width=800,height=600');
	if (window.focus) {newwindow.focus()}
}

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}

$(document).ready(function()
{ 
  $('ul.sf-menu').superfish({animation: {opacity:'show',height:'show'}, dropShadows: false, autoArrows: true}); 

});
