$(document).ready(function(){
	
	$("div#content img[width='575']").addClass('over_border');
    $("div#content img[width='100']").parent("p").addClass('five_up').addClass('clearfix');
    $("div#content img[width='80']").parent("p").addClass('five_up_borders').addClass('clearfix');
		
		
	$("a#open_overlay").click(function(){

		if($.browser.msie){

			var cssObj = {
			        backgroundImage: "none",
			        backgroundColor: "black",
			        filter: "alpha(opacity=80)"
			}

			$("div#overlay_bg").css(cssObj).fadeIn('slow');
			$("div#overlay_menu").fadeIn('slow');
			return false; 
	
		} else {

			$("div#overlay_bg").fadeIn('slow');
			$("div#overlay_menu").fadeIn('slow');
			return false;
	
		}
	});
	
	$("a#close_link").click(function(){
		$("div#overlay_bg").hide();
		$("div#overlay_menu").hide();
		return false; 
	});
	
	$("div#overlay_bg").click(function(){
		$("div#overlay_bg").hide();
		$("div#overlay_menu").hide();
		return false; 
	});
		
    var docHeight = $(document).height(); 
		$('div#overlay_bg').css("height",docHeight);
 
		$('div#overlay_menu div a').hover(function() {
			$(this).parent().addClass('hovered');
			}, function() {
			$(this).parent().removeClass('hovered');
			});

});
