//function createCookie(name,value,days) {
//  var expires = "";
//  if (days) {
//    var date = new Date();
//    date.setTime(date.getTime()+(days*24*60*60*1000));
//    expires = "; expires="+date.toGMTString();
//  } else {
//    // expires = "" -> cookie will be deleted immediatly
//  }
//  document.cookie = name+"="+value+expires+"; path=/";
//}

$(document).ready(function(){

var BASE = $('base').attr('href');
var EXT_LINK_TTL = 'External link - Opens in a new tab';

$("a[href^='http']").not("[href^='"+BASE+"']").addClass('external').attr('title',EXT_LINK_TTL).click(function() {
  window.open($(this).attr('href'));
  return false;
});

  //$('#products a[href^="http"]').click(function(){window.open($(this).attr('href')); return false;});

  $('#slideshow').cycle({
    //pause:1
  });

  $('#products li').mouseover(function(){
      $(this).find('.extlink').show();
  }).mouseout(function(){
      $(this).find('.extlink').hide();
  });

  $('#contact-tab').click(function(){
    $('#contact-wrapper').slideToggle('200');
    if ($('#contact-title').text() == 'contact') {
      $('#contact-title').text('close');
      $('#contact-title').addClass('expanded');
    } else {
      $('#contact-title').text('contact');
      $('#contact-title').removeClass('expanded');
    }
    return false;
  });

  function showmail(){
    var email_parts = $('#contact_email').attr('title').split('#');
    var name = email_parts[0];
    var domain = email_parts[1];
    var displayed = name+"@"+domain;
    $('#contact_email').html(displayed);
    $('#contact_email').removeAttr('title');
  }

  if ($('#contact_email').length){
    showmail();
  }

  $('#map_overlay').overlay();

  $('.maplink').click(function() {
    var mapHeight = $('#map_overlay').height();
    var mapWidth = $('#map_overlay').width();
    var map_id = $(this).attr('rel');
    $('#map_overlay .contentWrap').load("map.php", {'map':map_id, 'width':mapWidth, 'height':mapHeight});
    $('#map_overlay').overlay().load();
    return false;
  });

});
