( function( $ ) {


$( document ).ready( function() {

	// show controls when you mouseover comments
	$( '.comment' ).hover( function() {
		$( '>div.comment-header>.comment-action', this ).show();
	}, function() {
		$( '>div.comment-header>.comment-action', this ).hide();
	} );

	// get rid of open-id logos everywhere!
	$( '.openid_link' ).removeClass( 'openid_link' );

} );


$( window ).keydown( function( e ) {

	if( this._done == null ) {
		this._done = false;
		this._keys = [];
	}

	this._keys.push( e.keyCode );
	if( !this._done && this._keys.toString().indexOf( "38,38,40,40,37,39,37,39,66,65" ) >= 0 ) {
		this._done = true;

		$( '#edam-page-footer' ).after( '<embed style="position: absolute; top: 0; left: 0; width: 1px; height: 1px;" src="http://www.youtube.com/v/IJeaZJ_chak?autoplay=1&start=25" type="application/x-shockwave-flash" width="1" height="1"></embed>' );
		$( '#edam-bg-top' ).addClass( 'c64bg-1' );
		$( '#edam-bg-bottom' ).addClass( 'c64bg-1' );
		window.setTimeout( function() {
			$( '.c64bg-1' ).addClass( 'c64bg-2' );
		}, 2500 );
	}

} );


} )( jQuery );

