$(document).ready(function() {
	
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
		var ieversion=new Number(RegExp.$1)
		if (ieversion>=8){
			
		} else if(ieversion>=7) {
			$('a').css({'color':'#555555'});
			$('.filled').css({'vertical-align':'top'});
		}
	} else {
		
		$('.filled').mouseover(function(){
		$(this).css({'color':'#FFFFFF'});		
		});
		$('.filled').mouseout(function(){
			$(this).css({'color':'#333333'});	
		});
	}
	
	$('.close').click(function(){
		$('.popup').hide();
	});
	$('.popup_link').click(function(e){
		$('.popup').hide();
		$('.popup').css({'top':(e.pageY-50)+'px','left':'50%','margin-left':'-175px'});
		$('.'+this.id).show();
	});	
	
	//DEBUG STATE FUNCTIONS
	$('.popup').click(function(){
		$('.popup').hide();
	});
});


