/*
	javascript for idocument page.

	idocument_main.js v1.0
	create on 2009-11-09 by Oscar Woo

*/

$(document).ready(function() {

	// initialize scrollable together with the navigator plugin
	$("#screenshot_browser").scrollable({
		size: 1,
	}).navigator();
	
	$("#idocument_video").fancyZoom({directory: '../styles/images/fancyzoom'});
});


function insert_video(scr){	
	if($("#zoom").css("display") != "block"){return;}	
	
	if($.browser.safari)
	{
		$("#zoom_content").html(videoObj4html5(scr,600, 375));
	}else{
		$("#zoom_content").html(videoObj4html4(scr,600, 390));
	}
}
