var isIE = ($.browser.msie && parseInt($.browser.version.substr(0,1)) < 8);

function popup( movieurl, width, height, title ) {
  $("#popup").remove();
  var str = '<div id="popup"><a class="close"><span>close</span></a>'
  +'<table><tr><td class="cell1x1"></td><td class="cell1x2"><h1>'+title+'</h1></td><td class="cell1x3"></td></tr>'
  +'<tr><td class="cell2x1"></td><td class="cell2x2" style="width:'+width+'px; height:'+height+'px;">'
  +'<iframe src="'+movieurl+'" name="video" scrolling="no" frameborder="0" width="'+width+'" height="'+height+'"/>'
  +'</td><td class="cell2x3"></td></tr><tr><td class="cell3x1"></td><td class="cell3x2"></td><td class="cell3x3"></td></tr>'
  +'</table></div>';
  $('body').append( str );
  $('#popup a.close').click( function() { $('#popup').remove(); } );
  var leftpos = (document.body.offsetWidth - width - 73 - 48 ) / 2;
  $('#popup').css({left: leftpos});
  return false;
}

active_address = '';

$(document).ready( function() {
  $('#frm-newsletter input.text').focus(function()  { if ($(this).attr('value') == 'Your Email') $(this).attr('value', ''); });
  $('#frm-newsletter input.text').blur(function()   { if ($(this).attr('value') == '') $(this).attr('value', 'Your Email'); });

  $('.location').click( function(e) {
    if ( active_address == $(this).attr('title') ) {
      $('.bubble-address').fadeOut('normal')
      active_address = '';
    } else {
      active_address = $(this).attr('title');
      $('.bubble-address').fadeOut('normal', function() {
	    var off = $("#container").offset();
        var x = e.pageX - off.left - 70;
        var y = e.pageY - 150;
        $('.bubble-address p').html( $('p#'+active_address).html() );
        $('.bubble-address').css('left', x+'px');
        $('.bubble-address').css('top', y+'px');

        $('.bubble-address').fadeIn();
      });
    }

    return false;
  });

  $('.bubble-address').click( function() {
    $('.bubble-address').fadeOut('normal')
    active_address = '';
  });
});
