/* Scriptage for Fancybox */
$(document).ready(function() {
	/* This is basic - uses default settings */
	$("a.single_image").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':   '0.8',
		'overlayColor'  :   '#333'
	});
				
	/* Using custom settings */
	$("a.iframe").fancybox({
		'hideOnContentClick': true
	});
});

/* Scriptage for Show/Hide elements */
function showhide_form(id) {
	if (document.getElementById) {
		obj = document.getElementById(id);
		if (obj.style.display == "none") {
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
}
		
/* Scriptage for Popup Windows */
function wood() {
	open("Main_files/wood/woodwin.php",null,
	"height=570,width=240,left=560,status=no,toolbar=yes,menubar=no,scrollbars=yes,titlebar=no,location=no");
}

function glass() {
	open("Main_files/glass/glasswin.php",null,
	"height=570,width=240,left=560,status=no,toolbar=yes,menubar=no,scrollbars=yes,titlebar=no,location=no");
}

function instructions() {
	open("instructwin.php",null,
	"height=570,width=480,left=560,status=no,toolbar=yes,menubar=no,scrollbars=yes,titlebar=no,location=no");
}
