$(document).ready(function() {

$("a.group").fancybox({
		'hideOnContentClick': false,
		overlayOpacity: 0.6,
		overlayColor: "#000"
	});

	
	$('.tab-control a').click(function () {
        $('.index-tab').hide().filter(this.hash).show();
        $('.tab-control li').removeClass('active');
        $(this).parent().addClass('active');     
        return false;
    });
	
	$('.nextlink').click(function () {
        $('.index-tab').hide().filter("#about").show();
        $('.tab-control li').removeClass('active');
        $(".abouttab").addClass('active');     
        return false;
    });
	
	$('.screenlink').click(function () {
        $('.index-tab').hide().filter("#screens").show();
        $('.tab-control li').removeClass('active');
        $(".screenstab").addClass('active');     
        return false;
    });
	
	$('.updatelink, .indev').click(function () {
        $('.index-tab').hide().filter("#updates").show();
        $('.tab-control li').removeClass('active');
        $(".updatestab").addClass('active');     
        return false;
    });


});

