// JavaScript Document
$(function() {
$('#girl').click(function(){	
	
	$('.game').animate({top:"10px"});
	$('#close').animate({top:"10px"});
	$('.game').animate({height:"500px"});
	$('.game').animate({width:"450px"});
	$('.game').load('game.php');
	});
	$('#close').click(function(){
		$('.game').animate({width:"200px"});
		$('.game').animate({height:"200px"});
		$('.game').animate({top:"-700px"});
		$('#close').animate({top:"-700px"});
	});
	});

