$(document).ready(function() {

	    $(".reveal").click(function () { 
	      $(".cover").animate({top:'-175px', left:'-216px'},500);
	    });
		
		
	    $(".reset").click(function () { 
	      $(".cover").animate({top:'0px', left:'0px'},500);
	    });



    /*

//Diagnal Sliding
$('.box').click(function(){
	$(".cover", this).stop().animate({top:'-175px', left:'-216px'},{queue:false,duration:500});
}, function() {
	$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:500});
});



    //Diagnal Sliding
    $('#reset').click(function() {
        $(".cover").animate({
            top: '0px',
            left: '0px'
        },
        500);
    });



	$('.box').click(function(){
		$(".cover", this).stop().animate({top:'-260px', left:'-325px'},{queue:false,duration:500});
	});
	
	$('.reset').click(function(){
		$(".cover", ".box").stop().animate({top:'0px', left:'0px'},{queue:false,duration:500});
	});
*/
});
