var animSpeed = 400;

$(document).ready(function() {

	var pageUri = location.href;
	if(pageUri.indexOf("#") > 0) {
		var pageQuery = pageUri.split("#");
		$("#contentArea").load("pages/"+pageQuery[1]+".php");
	} else {
		$("#contentArea").load("pages/Urunler.php");
	}
	
	$(".menu ul li a").click(function() {
		
		var query = $(this).attr("href").split("#");

		$("#contentArea").stop().animate({opacity: 0}, animSpeed, function(){
			$("#contentArea").load("pages/"+query[1]+".php");
			$("#contentArea").stop().delay(animSpeed).animate({opacity: 1}, animSpeed);
			document.title = query[1] + " - Gelin Home";
		});
		
	});
	
});
