/**
  *	Samjay Productions
  */

	jQuery(document).ready(function()
	{
		defaultMaakPlayer();
	});

	function defaultMaakPlayer()
	{
//			maakPlayer("http://www42.zippyshare.com/v/6438370/file.html","- Feel The Vibe -","zippy");
	//		maakPlayer("http://www38.zippyshare.com/v/81561078/file.html","- Feel The Vibe 2 -","zippy");
	//		maakPlayer("http://www1.zippyshare.com/v/4863500/file.html","- Feel The Vibe 3 -","zippy");
//			maakPlayer("http://www18.zippyshare.com/v/36336495/file.html","- Feel The Vibe 6 -","zippy");
//			maakPlayer("http://www27.zippyshare.com/v/87290145/file.html","T.MASTIS - Pentagon","zippy");
//			maakPlayer("http://www1.zippyshare.com/v/8403495/file.html","Wolla Wolla Taboendimee","zippy");
//			maakPlayer("http://www64.zippyshare.com/v/72175775/file.html","- Feel The Vibe 2011","zippy");
			maakPlayer("http://www41.zippyshare.com/v/86544686/file.html","- Feel The Vibe 2011 - 2 -","zippy");
	}

	/**
	 *	makes zippyplayer of an url
	 *	supported types: zippy, youtube and shared
	 *	This function is wothless without linkServ.php =)
	 */
   function maakPlayer(url,titel,type)
   {
		jQuery("#player").load("index.php",{serv:'link',u:url,t:type});
		jQuery("#player").fadeIn(1000);
		return false;
   }

   function recreatePlayer()
   {
		defaultMaakPlayer();
		jQuery("#fixer").fadeIn(1000);
		jQuery("#fixshower").fadeOut(1000);
		return false;
   }

   function killPlayer()
   {
		jQuery("#fixer").fadeOut(1000);
		jQuery("#fixshower").fadeIn(1000);
		jQuery("#player").html("");
		return false;
   }
