// JavaScript Document

// Fix anchor background flickering in IE6
try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

// Setup DHTML elements
$(document).ready(function() {  
	$('a[rel="popup"]').click( function() {
        window.open( $(this).attr('href'), '', 'toobar=0, resizable=1,scrollbars=1' );
        return false;
    });
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
});
