jQuery(function($) { // Execute when DOM is ready

// $("a[href*='eclipsebank.com']").attr("title","coming soon").attr("style","cursor:default;border-color:#ddd").attr("rel","").attr("href","").click(function() {
	// return false;
// });


/* ie */
// defeat the background image flicker for image-replaced links in IE 6
if ( $.browser.msie && parseInt($.browser.version) <= 6 ) {
	try {
	 document.execCommand('BackgroundImageCache', false, true);
	} catch(e) {}
}

/* new window */
$("a[rel='external']").click(function() {
	window.open($(this).attr('href'));
	return false;
});

/* draggable */
$("#logo").draggable({revert:true});

/* tooltip */
$("a.tooltip").tooltip({ 
	track: true, 
	delay: 0, 
	showURL: false, 
	showBody: " - ", 
	opacity: 0.9 
});

/* Van Damme */

var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
$(document).keydown(function(e) {
	kkeys.push( e.keyCode );
	if ( kkeys.toString().indexOf( konami ) >= 0 ){
		$(document).unbind('keydown',arguments.callee);
		$('<img src="/stuff/vandance.gif" style="position:absolute;top:-300px;left:550px;z-index:10;border:5px solid #eee" />')
			.prependTo("#page")
			.animate({top: "150px"}, 2500);
	}
});

}); // End DOM ready execution