/*======================================
	[/0:] include_js function
=======================================*/

include_js("./js/scroll.js");

function include_js(js_src)
{
	var js_type, js_char;
	js_type = "text/javascript";
	js_char = "utf-8";
	document.write('<script type="' + js_type + '" src="'  + js_src + '" charset="' + js_char + '"></script>');
}





/*======================================
	[/1:] scroll function
=======================================*/

$(function(){
	$('.toTop a').click(function(){
		$('#header').ScrollTo(1000, 'easeout');
		return false;
	});
})

/*======================================
	[/2:] set flash function
=======================================*/
function inFlash(url,w,h,bg){
	document.open();
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" wmode="transparent" width="' + w + '" height="' + h + '">');
	document.write('<param name="movie" value="' + url + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="' + bg + '" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<embed src="' + url + '" quality="high" bgcolor="' + bg + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" width="' + w + '" height="' + h + '"></embed>');
	document.write('</object>');
	document.close();
}

