$(document).ready( function () { /* open a link in the new window */
    $('.blank').click(function(){
        window.open(this.href, '_blank');
        return false;
    });
});

$(function() {
$('a[rel^=lightbox]').lightBox();
});

$(window).scroll(function(){

});
$(window).resize(function(){

});

$(document).ready(
	function() {
	$('#fisheye > ul').tabs({
	deselectable: true, selected: null, fx: { height: 'toggle' , opacity: 'toggle' , duration: 1000}
	});
	}
);


$(document).ready(
	function() {
		var count = 1000;
		setTimeout(
		function(){$("#wrap").fadeIn(2000);
				$('#fisheye').Fisheye(
			{
				maxWidth: 75,
				items: 'ul li a',
				itemsText: 'p.itemtitle',
				container: '.fisheyeContainter',
				itemWidth: 75,
				proximity: 50,
				alignment : 'center',
				valign: 'bottom',
				halign : 'center'
			}
		)
	}, count);
});
         $(function(){
                $("#wtf").click(function(){
                if ($("#about").is(":hidden")) {
                	wtfHeight = $(window).height();
                    	$("#about").css('height', $(document).height()+'px');
                    	$("#about").css('z-index', '1000');
                        $("#about").slideDown(400,'easeInQuad');
                        } else {
                        $("#about").hide();
                        }
                });
                $("#closeme").click(function(){
                        $("#about").slideUp(400,'easeInQuad');
                });
         });
