
Cufon.replace('#nav', {	hover: true});
Cufon.replace('h2');
Cufon.replace('.pager', {hover: true});
Cufon.replace('.moreinfo', {hover: true});
Cufon.replace('.generic-button', {hover: true});
Cufon.replace('.subnav', {hover: true});

function hidefull(){
	$(".full").hide();	
}
function showfull(){
	$(".summary").slideUp();
	$(".full").slideDown();
}

$(document).ready(function(){ 
        $("ul.sf-menu").superfish({autoArrows:false});  // call supersubs first, then superfish, so that subs are 
                         // not display:none when measuring. Call before initialising 
                         // containing tabs for same reason.
						/*supersubs({ 
            minWidth:    5,   // minimum width of sub-menus in em units 
            maxWidth:    20,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        })*/
}); 

function getReivew(div_id)
{
	var x=document.getElementById(div_id)
	x.style.display=(x.style.display)==''? 'none':x.style.display;
  	if (x.style.display=='none'){
		x.style.display = 'block';
	}else{
		x.style.display = 'none';
	}	
}

function winpop(url,name,sizex,sizey)
{
        newwin = window.open(url, name, "width=" + sizex + ",height=" + sizey + ",toolbar=no,location=no,directories=no,status=0,resizable=no,scrollbars=auto,menubar=no");
newwin.moveTo(((screen.width/2)-(sizex/2)),((screen.height/2)-(sizey/2)));
}