function init(homeUrl)
{
    var menu0 = new Image(65, 30);
    menu0.src  = homeUrl + "images/navHome.gif"

    var menu1 = new Image(95, 30);
    menu1.src  = homeUrl + "images/navProductActive.gif";

    var menu2 = new Image(73, 30);
    menu2.src  = homeUrl + "images/navArtistActive.gif";

    var menu3 = new Image(64, 30);
    menu3.src  = homeUrl + "images/navGameActive.gif";

    var menu4 = new Image(120, 30);
    menu4.src  = homeUrl + "images/navDownloadsActive.gif";
}

function goTop(id)
{
    $.scrollTo("#" + id, 500);
}

$(document).ready(function(){
	$('div#catchImage a').click(function(){
		var swf = '';
		swf    += '<object width="465" height="322">';
		swf    += '<param name="movie" value="http://www.youtube.com/v/nRmM69ASweI&hl=en_US&fs=1&autoplay=1" />';
		swf    += '<param name="allowFullScreen" value="true" />';
		swf    += '<param name="allowscriptaccess" value="always" />';
		swf    += '<param name="bgColor" value="#000000" />';
		swf    += '<embed src="http://www.youtube.com/v/nRmM69ASweI&hl=en_US&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="465" height="322" bgColor="#000000"></embed>';
		swf    += '</object>';
		$('div#catchImage').html(swf);
	});
});