/* --------------------------------
	skybox
-------------------------------- */

$(function() {
	skybox.init('a.skybox');
});

function showSkybox(src) {
	var w = (/msie (\d+)/.test(navigator.userAgent.toLowerCase())) ? 806 : 804;
	skybox.show({
		src: src,
		width: w,
		height: 600
	});
};


