$(document).ready(function()
{
	init();
	
	$('#brochurePop').click(function(e)
	{
		e.preventDefault();
		
		TINY.box.show('brochure.html', 1, 414, 650, 1);
	});
	
	$('a[href*=enquiry.asp]').click(function(e)
	{
		e.preventDefault();
		
		GB_showCenter('', $(this).attr('href'), 640, 800);
	});
	
	$('#GB_overlay').live('click', function(e)
	{
		e.preventDefault();
		
		GB_hide();
	});
});