function openWindow(url, title, w, h) {
	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-(h/2);
	return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

jQuery(document).ready(function($) { 
	// fade out any flash messages we may have after 5 seconds
	setTimeout('$("div.message[id$=Message]").fadeOut();', 5000);
	// fade out menu items
	if(requestedPage != 'home' && requestedPage != 'location-map' && requestedPage != 'contact-us' && requestedPage != 'enquiry' && requestedPage != 'thank-you') {
		$('#wrapper .menu ul li > a').css('opacity', '0.5');
		$('#wrapper .menu ul li[class~="selected"] > a').css('opacity', '1');
	}
	$('#wrapper .left .leftMenu ul li:first-child').css({'padding-top':0});
	$('#wrapper .left .leftMenu ul li:last-child').css({'padding-bottom':0, 'background-image':'none'});
	// bcd order popup
	$('a.orderOnline').click(function() {
		openWindow('/bcd/index.html', 'orderonline', 545, 600);
		return false;
	});
	$('li.order-online-link a').click(function() {
		openWindow('/bcd/index.html', 'orderonline', 545, 600);
		return false;
	});
}); 


