$(function() {

	// adds the active class to the menu
	$('#menu a').each(function(i) {
		if($(this).attr('href') == pageName){
			$(this).addClass('active');
		}
	});
	
	// colorbox js
	// colorbox modals
	$(".gallery a").colorbox({transition:"elastic"}); // for images
	$(".iframe_modal").colorbox({width:"80%", height:"80%", iframe:true}); // for iframe modals
	$(".map_modal").colorbox({transition:"elastic"}); // for iframe modals
	
	$(".inline_modal").click(function() { // for inline modals, content in hidden div on page
									  
		var modalvars = $(this).attr('rel').split('|');
		var id = modalvars[0];
		var mwidth = modalvars[1];
		var mheight = modalvars[2];
		
		if(mheight != ''){
			$(this).colorbox({width:mwidth, height:mheight, inline:true, href:id});
		} else {
			$(this).colorbox({width:mwidth, inline:true, href:id});
		}
									  
	});


});