var t;
$(document).ready( function() {
	$('.entry table').css({opacity: 0});
	if ($.browser.msie) {
		$('.entry table').css({position: 'absolute', marginLeft: '-1px', height: '46px'});
	}
	$('.entry').mouseover(function() {
		if ($(this).hasClass('video')) {
			$(this).children('table').stop().animate({opacity: .8, 'margin-top': '0px'}, 250);
		}
		else {
			$(this).children('table').stop().animate({opacity: .8}, 250);
		}
	}).mouseout(function() {
		if ($(this).hasClass('video')) {
			$(this).children('table').stop().animate({opacity: 0, 'margin-top': '-45px'}, 250);
		}
		else {
			$(this).children('table').stop().animate({opacity: 0}, 400);
		}
	});
	$('#archiveup a').click(function() {
		this.blur();
		$('#archive').stop().css({
			top: $('#archiveup a').offset().top - 1 + 'px',
			left: $('#archiveup a').offset().left - 1 + 'px',
			width: $('#archiveup a').width() + 10 + 'px',
			opacity: .99
		}).toggle();
		return false
	});
	$('.comments a').each(function() {
		this.target = '_blank';
	});
	$("#archive").hover(function() {
        clearTimeout(t);
    }, function() {
        t = setTimeout(function() {
			$("#archive").fadeOut(500)
		}, 1500);
    }); 
});
