$(document).ready(function() {
	$("#main-menu > li").click(function () {
		var attrValue = $(this).children("a").attr("href");
		var classValue = $(this).attr("class");
		if(classValue == 'olink') {
			window.open(attrValue);
		} else {
			top.location.href = attrValue;
		}
	});
	$("#main-menu > li > a").css("display","none");
	
	$("#banners > a").click(function () {
		window.open($(this).attr("href"));
		return false;
	});
	
	$("#sub-nav > li").click(function () {
		var attrValue = $(this).children("a").attr("href");
		top.location.href = attrValue;
	});
	$("#sub-nav > li > a").css("display","none");
});
$(document).ready(function() {
	$('#gal a').lightBox();
})