// tooltip
$(document).ready(function() {
  //$('#img-container .thumb img').cluetip();
  //$('a.basic').cluetip();
  //alert(0);
  $('#img-container .thumb img').tooltip({
  	  showURL: false,
  	  showBody: ", "
  });

});

// mail
function email(pre,domain,tld){
  if(domain=="") { domain="ayseyavas"};
  if(tld=="") { tld="ch"};
  if(pre=="") { pre="kontakt"};
  window.location.href = "mailto:"+pre+"@"+domain+"."+tld;
}

// select
function jumpSelect(selObj) {
	eval("window.location.href='"+selObj.options[selObj.selectedIndex].value+"'");
}
