	$(function(){
	
		$('#hakkimda').css('cursor','pointer').hover(function(){
			$(this).stop().animate({"bottom" : "28px", "left" : "225px"},700);
		}, function() {
			$(this).stop().animate({"bottom" : "-8px", "left" : "212px"},700);
		});

		$('#onbes').css('cursor','pointer').hover(function(){
			$(this).stop().animate({"bottom" : "34px", "left" : "905px"},700);
		}, function() {
			$(this).stop().animate({"bottom" : "8px", "left" : "900px"},700);
		});

	var width  = $(window).width();
	var height = $(window).height();
	
	if(height < 700){
		$('#footer').css('bottom','-80px');	
	}
/*
		$('#footer').css('cursor','pointer').hover(function(){
			$(this).stop().animate({"bottom" : "-150px"},600);
			$('#footer_back').stop().animate({"bottom" : "0px"},500);
		});

		$('#taban').mouseout(function(){
			$('#footer_back').stop().animate({"bottom" : "-200px"},600);
			$('#footer').stop().animate({"bottom" : "0px"},500);
		});
	*/
	});

