// JavaScript Document

function init_main() {
	
	/****************/
	/* mega-feature expand and collapse functionality
	/****************/
	
	$("#megaCollapse").show();
	$("#megaExpand").hide();	
	
	$("#megaExpand").click(function(){
		$("#megaCollapse").show();
		$("#megaExpand").hide();
		$("#mega-content").show();
	});
	
	$("#megaCollapse").click(function(){
		$("#megaCollapse").hide();
		$("#megaExpand").show();
		$("#mega-content").hide();
	});
	
}

$(document).ready(function() {
	init_main();
	init_events();
	init_lightBox();
});