$(function() {

    // Open external links in a new browser window:
    $("a[rel*='external'], a.external").attr('target','_blank');

    // Top:
    $("a.top").click(function() {
        $('html, body').animate({ scrollTop:0 }, 'slow');
        return false;
    });

	// animate homepage:
	if ($('body').is('.home') && $('html').is(':not(.ie6, .ie7)')) {
		$('#look-inside').hide();
		$('#primary').css('background-image', 'none');
		$('<div id="house"></div>').hide().appendTo('#primary').fadeIn(600, function() {
			$('#look-inside')
				.css('opacity', 0)
				.css('margin-left', '10px')
				.show().delay(300).animate({
					'margin-left' : 0,
					opacity: 1},
					400);
		});
	}

	$("a.lightbox").fancybox({
		cyclic: true,
		hideOnContentClick: true,
		overlayColor: '#000',
		showCloseButton: false
	});

});
