window.subnav_dvd=0;
window.subnav_pornstars=0;
window.subnav_upload=0;


function show_video_subnav() {
	try {
  //hide_all_subnav ();
	clear_nav_timer();
	Element.show('subnav-video');
	Element.hide('subnav-photo');
  Element.hide('subnav-upload');
  $('subnav-video').onmouseover=clear_nav_timer;
	} catch (e) {}
}

function hide_video_subnav () {
	//Element.hide('subnav-video');
	window.nav_timer = window.setTimeout ("Element.hide('subnav-video')", 300);
}



function show_photo_subnav() {
		try {
		clear_nav_timer();
		Element.show('subnav-photo');
		Element.hide('subnav-video');
		Element.hide('subnav-upload');
    $('subnav-photo').onmouseover=clear_nav_timer;
		} catch (e) {}
}

function hide_photo_subnav () {
	//Element.hide('subnav-photo');
	window.nav_timer = window.setTimeout ("Element.hide('subnav-photo')", 300);
}

function show_upload_subnav() {
		try {
		clear_nav_timer();
		Element.show('subnav-upload');
		Element.hide('subnav-video');
		Element.hide('subnav-photo');
    $('subnav-upload').onmouseover=clear_nav_timer;
		} catch (e) {}
}

function hide_upload_subnav () {
	//Element.hide('subnav-upload');
	window.nav_timer = window.setTimeout ("Element.hide('subnav-upload')", 300);
}

function hide_all_subnav() {
	window.nav_timer = setTimeout(function(){Element.hide('subnav-video');Element.hide('subnav-photo');Element.hide('subnav-upload');},100);
}

function clear_nav_timer() {
	clearTimeout(window.nav_timer);
}                                                                                                                                                                                                                
