function show_date()
{
var d=new Date()
var weekday=new Array("Sun","Mon","Tues","Wed","Thurs","Fri","Sat")
var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
document.write(weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
}



function disable()
{
if (event.button == 2)
	{
	alert("Sorry there is no right click allowed on this page.")
	}
}

function mymenu()
{
	
	document.write("<b> Home </b><br /><br />")
	document.write("<a href = 'main.html'>Home</a><br /><br />")
	
	document.write("<b> Light Fetish </b><br />")
  document.write("<a href = 'june19.html'>June 19th</a><br />")
	document.write("<a href = 'zoe_bound.html'>Zoe - Bound</a><br />")
	document.write("July 3rd Coming soon<br /><br />")
	
	document.write("<b> Standard </b><br /><br />")
	document.write("<a href = 'oksana.html'>Oksana</a><br />")
	document.write("<a href = 'oksana_bluejeans.html'>Oksana - Blue Jeans</a><br />")
	document.write("<a href = 'oksana_whiteshirt.html'>Oksana - White Shirt</a><br />")
	document.write("<a href = 'oksana_whiteloin.html'>Oksana - White Loin</a><br />")
	document.write("<a href = 'oksana_purple.html'>Oksana - Purple Vale</a><br /><br />")


	document.write("<a href = 'zoe.html'>Zoe</a><br />")
	document.write("<a href = 'zoe_bound.html'>Zoe - Bound</a><br />")
	document.write("<a href = 'zoe_changing.html'>Zoe - Changing</a><br /><br />")
	document.write("<a href = 'nat_steve.html'>Natalie and Steve</a><br />")
	document.write("<a href = 'natalie.html'>Natalie</a><br /><br />")
	document.write("<a href = 'emma.html'>Emma</a><br />")
	document.write("<a href = 'various.html'>Various</a><br />")
	document.write("<a href = 'helen_jane.html'>Helen and Jane</a><br /><br />")
	document.write("<a href = 'jessica.html'>Jessica</a><br />")
	document.write("<a href = 'jessica_nude.html'>Jessica(Nude)</a><br /><br />")
	document.write("<a href = 'jo_ady.html'>Jo and Ady</a><br /><br />")
	
	document.write("<b> Clothes Show </b><br /><br />")
	document.write("<a href = 'smallstage.html'>Small Stage</a><br />")
	document.write("<a href = 'h&m.html'>H&M Summer 2005</a><br />")	
	document.write("<a href = 'mainstage.html'>Main Stage</a><br />")	
	document.write("<a href = 'mainshow.html'>Main Show</a><br /><br />")	
	
	
	document.write("<b> The Process </b><br /><br />")
	document.write("<a href = 'the_process.html'>The process</a><br />")
	document.write("<a href = 'mrf.html'>Model release</a><br /><br />")

	document.write("<b> Other Links </b><br /><br />")	
	document.write("<a href = 'links.html'>Other websites</a><br /><br />")

	document.write("<b> Mail </b><br /><br />")
	document.write("<a href= 'mailto:web@sepia-shots.co.uk'>Email Me</a>")
	document.write("<br /><br />")

}

