function popupPic(sPicURL) {
     window.open( "popup.html?"+sPicURL, "",  "resizable=1,HEIGHT=200,WIDTH=200");
}

function openPopUp( url ) {
	
	window.open(url , "" ,  "resizable=1, scrollbars=1, HEIGHT=600,WIDTH=650");
	return false;
}

/* 
 jQuery Suckerfish Drop Downs
*/

$(document).ready(function(){
    $("#nav-one li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { } 
    );
    if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    }
    
    $(".usermanuals").click( function(){
    	openPopUp( $(this).attr("href") );
    	return false;
    });
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
}; 
