$().ready(function() {

	$("#twitter").getTwitter({
	  userName: "clubprincemende",
		numTweets: 8,
		loaderText: "Betöltés...",
		slideIn: false,
		showHeading: true,
		headingText: "Legfrissebb hírek",
		showProfileLink: false,
		showTimestamp: true
	});
	
	$('#subcribe').click(function(){
	  var email = $(".newsletter input[name='email']").val();
	  var telephone = ''; 
	  if (email == '' || email == "E-mail cím") {
	    alert('A feliratkozáshoz kérjük add meg az email címed!');
	  } else { 
  	  $.post("/subscribe/", { email: email, phone: telephone } );
	    
	    new Boxy(
	      '<h3>Hírleveleünkre sikeresen feliratkoztál a <strong>'+email+'</strong> címmel. Köszönjük regisztrációd!</h3>', 
	      {title: 'Hírlevél feliratkozás',
	       modal: true,
	       closeText: 'Bezárás'}
	    );
	  }  
	});
	
	// Temporary solution for multi column layout
	$('.club #content .columns').columnize({ columns: 2 });

	// Flyers
	if ($('#thumbs').size() > 0) {
  	var flyers = $('#thumbs').galleriffic({
  	  imageContainerSel:         '#slideshow',
  		controlsContainerSel:      '#controls',
  		numThumbs:                 15,
  		renderSSControls:          true,
  		renderNavControls:         true,
  		playLinkText:              'Slideshow',
  		pauseLinkText:             'Slideshow stop',
  		prevLinkText:              '&lsaquo; Előző Fotó',
  		nextLinkText:              'Következő Fotó &rsaquo;',
  		nextPageLinkText:          '&rsaquo;',
  		prevPageLinkText:          '&lsaquo;',
  		enableHistory:             false,
  		autoStart:                 false
  	});
  }

  // mp3 player
  /*$("#player").jPlayer({
    swfPath: "public/lib/jplayer",
    top: 60,
		left: 823,
    ready: function () {
       var music = 'http://clubprince.hu/letoltes/Wild_West_Classic_-_Reflection_by_Arnou.mp3';
       $(this).setFile(music).play();
    }	
  });*/
  
  /*$('#player').popupWindow({ 
    height: 295, 
    width: 418, 
    top: 0, 
    left: 0,
    resizable: 0,
    windowURL: '__player'
  });*/
  
  $('h2.prices').popupWindow({ 
    height: 500, 
    width: 400, 
    top: 50, 
    left: 50,
    scrollbars: 1,
    windowURL: 'popup/menu' 
  });
  
  $("a[rel='club']").colorbox({current: "{current} / {total}"});	
  $("a[rel='wild_west']").colorbox({current: "{current} / {total}"});	
  $("a[rel='arnou']").colorbox({current: "{current} / {total}"});	
  $("a[rel='nigel']").colorbox({current: "{current} / {total}"});	
  $("a[rel='benji']").colorbox({current: "{current} / {total}"});	
  $("a[rel='modal']").colorbox({current: "{current} / {total}"});
  
  // Default values
  $("input[name='telephone']").defaultValue('Telefonszám');
  $("input[name='email']").defaultValue('E-mail cím');
  
  $(".opener").live('click',function(){
    $(this).next().show('normal');
  });
  
	$.fn.clickUrl = function() {
	  var regexp = /(www).*/gi;
		
	  this.each(function() {
	    $(this).html(
	        $(this).html().replace(regexp,'<a href="http://$&">$&</a>')
	    );
	  });
	  return $(this);
	}

});

