// JavaScript Document

var currentPopUp = null;

$(document).ready(function() {
		
		//if (window.location.hash.length > 1) window.location = window.location.href.replace(window.location.hash, '');
		
		        $('.sourceLink').click(function(){
                        var id = $(this).attr('rel');
						if (currentPopUp != null) $('#' + currentPopUp).fadeOut('slow');
                        currentPopUp = id;
						$('#' + id).fadeIn('slow');
						return false;
                });
				
				$('.sourceLinkClose').click(function(){
                        var id = $(this).attr('rel');
						$('#' + id).fadeOut('slow');
                        return false;
                });
	   });
