/*
  Caner ÖNCEL
*/  

$(document).ready(function(){  

// Paket fiyatı değiştir
$(".fiyatdegis").change(function() {
  var aydi = $(this).val();
  // alert(value);
  $(".fiyatlar").hide();
  $("#"+aydi).fadeIn();  
});          

// Tipsy
$(".tip").tipsy({gravity: 's'}); // nw | n | ne | w | e | sw | s | se

}); //doc ready end


function goCartPage(key,period) { 
  window.location = "https://secure.turhost.com/hspc/plans.php?series_key=" + key + "&period=" + $("#"+period).val(); }	
  
function openMessenger() {
  var url = 'http://canli.turhost.net/chat.php';
  window.open(url, '_blank', 'menubar=0,location=0,scrollbars=auto,resizable=1,status=0,width=600,height=650'); }    
  
// Fiyat değiş (paket anasayfası)  
function fiyatDegis(aydi,sello) { 
  var period = $("#"+sello).val(); //period
  var nesneID = ""+period+"_"+aydi+""; //değişecek id
  
  // alert(nesneID);
  
  $("."+aydi).hide();
  $("#"+nesneID).fadeIn(); 
}	  
