function toggle(eId) {
	if (eId.indexOf("#") != -1) {
		eId = eId.substr(eId.indexOf("#") + 1)
	}
	var e = document.getElementById(eId);
	if (e.style.display != 'none') {
		e.style.display = 'none';
	} else {
		e.style.display = '';
	}
}

$(document).ready(function() {
	/* Image Fancybox */
	var fancy_params = {"autoScale" : true,
		"overlayShow" : false,
		"titlePosition" : "inside",
		"transitionIn" : "elastic",
		"transitionOut" : "elastic",
		"speedIn" : 500,
		"speedOut" : 300,
		"showNavArrows" : true,
		"margin" : 30,
		"autoDimensions": true,
		"type" : "image"};
	$("a.fancybox:has(img), a.fancybox[href$=.jpg], a.fancybox[href$=.png], a.fancybox[href$=.gif], a.fancy_img").attr('rel', 'gallery').fancybox(fancy_params);
	$("a.fancy_gallery").fancybox(fancy_params);
	
	/* swf */
	fancy_params.type = "swf";
	$("a.fancybox[href$=.swf]").fancybox(fancy_params);
	
});
