$(document).ready(function()
	{
	$('.birincisi').click( listeBuyutBir );
	$('.ikincisi').click( listeBuyutIki );
	$('.ucuncusu').click( listeBuyutUc );
	$('.dorduncusu').click( listeBuyutDort );
	});
	
	function listeBuyutBir () {
		$('.birinci').animate( { width: '802px' }, 500);
		$('.ikinci').animate( { width: '50px' }, 500);
		$('.ucuncu').animate( { width: '50px' }, 500);
		$('.dorduncu').animate( { width: '50px' }, 10);
		}
	function listeBuyutIki () {
		$('.ikinci').animate( { width: '802px' }, 500);
		$('.birinci').animate( { width: '50px' }, 500);
		$('.ucuncu').animate( { width: '50px' }, 500);
		$('.dorduncu').animate( { width: '50px' }, 10);
		}
	function listeBuyutUc () {
		$('.ucuncu').animate( { width: '802px' }, 500);
		$('.birinci').animate( { width: '50px' }, 500);
		$('.ikinci').animate( { width: '50px' }, 500);
		$('.dorduncu').animate( { width: '50px' }, 10);
		}
	function listeBuyutDort () {
		$('.dorduncu').animate( { width: '802px' }, 500);
		$('.birinci').animate( { width: '50px' }, 500);
		$('.ikinci').animate( { width: '50px' }, 500);
		$('.ucuncu').animate( { width: '50px' }, 500);
		}
	
