function openVideo(videoUrl)
{
	if(videoUrl)
	{
		Shadowbox.open({
			content: videoUrl,
			player: 'swf',
			height: 360,
        	width: 640
		});
	}
}
function openPage(pageUrl)
{
	if(pageUrl)
	{
		Shadowbox.open({
			content: pageUrl,
			player: 'iframe',
			height: 612,
        	width: 771
		});
	}
}
function openJPG(pageUrl)
{
	if(pageUrl)
	{
		Shadowbox.open({
			content: pageUrl,
			player: 'img'
		});
	}
}
function getCopyrightInfo(){
	now = new Date
	theYear=now.getYear()
	if (theYear < 1900){
		theYear=theYear+1900;
	}
	$('#copyright').text('copyright ' + theYear + ' My Soul Cafe');
}
