$(document).ready(function() {
		$('div#menu').insertAfter('div#mmm1');
		$('div#menu3').insertAfter('div#mmm1');
		$('div#kat-bilgi').insertAfter('div#mmm1');
		$('div#menu4').insertAfter('div#mmm1');
		$('div#benzer').insertAfter('div#mmmoyna');
		$('div#top-10-etiket').insertAfter('div#mmm-kat-bilgi');
		
/* tool tip */
	$(".oyunResim").hover(
		function() { $(this).contents("span:last-child").css({ display: "block" }); },
		function() { $(this).contents("span:last-child").css({ display: "none" }); }
	);

	$(".oyunResim").mousemove(function(e) {
		var mousex = e.pageX + 10;
		var mousey = e.pageY + 5;
		$(this).contents("span:last-child").css({  top: mousey, left: mousex });
	});
	

/* embed code */
	var emb = document.getElementById("embed");
	//emb.style.display = "inline";
	//emb.style.width = ((screen.width)-450) + "px";
	//$('div#embed').insertAfter('div#mmm1');

/*  sliding navigation */
	slide("#sliding-navigation", 25, 7, 50, 0.9);
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li.sliding-element";
	var link_elements = list_elements + " a";
	
	// initiates the timer used for the sliding animation
	var timer = 1000;
	
	// creates the slide animation for all list elements 
	$(list_elements).each(function(i)
	{
		// margin left = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-left","-180px");
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "60px" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
	});

	// creates the hover-slide effect for all link elements 		
	$(link_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingLeft: pad_out }, 150);
		},		
		function()
		{
			$(this).animate({ paddingLeft: pad_in }, 150);
		});
	});
}

	



function toggle() {

	var ele = document.getElementById("toggleText");
	if(ele.style.display == "block") {
    	ele.style.display = "none";
  	}else{
		ele.style.display = "block";
	}
}

function loadContent(id, element) {
	$("#"+element+"").load("http://www.mutluoyunlar.com/"+id+"");
}
