$(function(){
	$('a.external_link').click( function() {
		window.open(this.href);
		return false;
	});

	$('#movie_holder').click(function(event){
		id = $('#episode_id').html();		
		$('#movie_holder').html("<p>Loading episode "+id+"...<\/p>");
		$("#movie_holder").load("http://stevenbullen.com/diggnationbeers/include/video_embed.php?id="+id);
		return false;
	});

	$('.hide_me').show();
	
	$("#submit").click(function(){
		$('#search').show();
		$('#search_results').html('<div style="text-align: center; padding-top: 6px"><img src="http://stevenbullen.com/diggnationbeers/img/loader.gif" alt="loading..." /></div>');
		var beer = $("#input_beer").val();
		$.get("search.php", { beer: beer }, function(data){$('#search_results').html(data);});
		return false;
	});
	
	$(":text").labelify();
});