jQuery(document).ready(function() {
	diveSites();
});

var diveSites=function() {
	jQuery('#pop_box').hide();
	
	jQuery("a.pop_link").click(function(){
		jQuery('#pop_box').hide();
// 		alert (this.rel); return;
		
		jQuery.post(siteRoot + 'divesites/popup/' + this.rel,
			function(data) {
				$('#pop_box').html('');
				$('#pop_box').html(data);
				jQuery("a.box_hide").click(function(){
					jQuery('#pop_box').hide();
				})
			});			
		jQuery('#pop_box').slideToggle('fast');
		
	});

	jQuery("area.pop_link").click(function(){
		jQuery('#pop_box').hide();
// 		alert (this.id); return;
		
		jQuery.post(siteRoot + 'divesites/popup/' + this.id,
			function(data) {
				$('#pop_box').html('');
				$('#pop_box').html(data);
				jQuery("a.box_hide").click(function(){
					jQuery('#pop_box').hide();
				})
			});			
		jQuery('#pop_box').slideToggle('fast');
		
	});
}