$().ready(function(){
  // Main Menu links.
  $.getScript('scripts/jquery.goTo.js', function(){
    $('#home').goTo('/');
    $('#about').goTo('/about');
	$('#tips').goTo('/tips');
    $('#missing').goTo('/missing');
  });
  // Missing pop-up links.
  $('.more').click(function(){
    var page = this.id;
    var height = 550;
    
    switch(page) {
      case 'ilya':
        height = 525;
        break;
      case 'emil':
      case 'galia':
      case 'anna':
      case 'krasimir':
      case 'radostina':
      case 'milan':
        height = 300;
        break;
      case 'unknown':
        height = 215;
        break;
      case 'dimiter':
      case 'ivan':
        height = 250;
        break;
      case 'silvia':
      case 'vq':
      case 'boyan':
        height = 400;
        break;
      case 'elena2':
        height = 440;
        break;
			case 'asparuh':
				height = 450;
				break;
      case 'vladimir':
			case 'vassil':
			case 'tereza':
			case 'svetlin':
			  height = 275;
			  break;
			case 'petar':
			  height = 475;
			  break;
			case 'elena':
			  height = 315;
			  break;
			case 'zarko':
			case 'stoyanka':
			  height = 330;
			  break;
			case 'oldtimer':
  			height = 350;
  			break;
			case 'monika':
			  height = 375;
			  break;
    }
  
		$('.window').css({'width': '750px', 'height': height + 'px'});
		
		if (page == 'petko' || page == 'suvestin') {
		  if (!$('.window').hasClass('scrollable'))
		    $('.window').addClass('scrollable');
		} else {
		  if ($('.window').hasClass('scrollable'))
		    $('.window').removeClass('scrollable');
		}
		
		$('.window').fadeIn('slow', function(){
		  $('.window > #text').load('/missing/' + page);
		});
		
		return false;
	});
  // Missing pop-up window.
  $('.window > #close').click(function() {
		$('.window').fadeOut('slow', function() {
			$('.window > #text').html("");
			$('.window').css({'display': 'none'});
		});
		
		return false;
	});
	// Facebook group link.
  $('#facebook').click(function(){window.open('http://www.facebook.com/group.php?v=wall&gid=262218212206', '_blank')})
  // E-Mail link.
  $('.email').click(function(){window.open('mailto:izcheznali@gmail.com', '_self')});
});