/* sharing functions*/
function fbs_click(){u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}
function bebo_click(){u=location.href;t=document.title;window.open('http://www.bebo.com/c/share?Url='+encodeURIComponent(u)+'&Title='+encodeURIComponent(t)+'&MID=8974376238&TUUID=fc7850b8-964c-47bd-8a91-db1d2a5cad3c','sharer','toolbar=0,status=0,width=626,height=436');return false;}

/* tandc */
function tandc_click(url){window.open(url,'tandc','scrollbars=1,resizable=1,toolbar=0,location=0,width=500,height=350');return false;}

/* for watching films */
function showFilm(id,video){$('.details').hide();$('#film_details').animate({height:20+$('#details_'+id).height()},'slow');$('#details_'+id).fadeIn('slow');$('#player_wrapper').html('').flash({src:'http://www.youtube.com/v/'+video,width:620,height:371});}
function showMakingOf(id){$('#player_wrapper').html('').flash({src:'http://www.youtube.com/v/'+id,width:620,height:371});}
function competitionResponse(text){if(text=='success'){$('p#competition_error').html('').hide();$('p#competition_error_log').html('').hide();$('form#competition_form').fadeTo('fast',1.0).clearForm();$('p#competition_success').html('Thanks for entering.  Good luck!').show();}else{$('p#competition_success').html('').hide();$('form#competition_form').fadeTo('fast',1.0);$('p#competition_error').html('Sorry, we have encountered trouble accepting this form.').show();$('p#competition_error_log').html(text).hide();}}
function competitionProcess(form){$('p#competition_error').html('');$('form#competition_form').fadeTo('fast',0.2);var submitOptions={success:competitionResponse,url:'system/competition.php?ajax'};$(form).ajaxSubmit(submitOptions);}
function competitionInvalidHandler(e,validator){var errors=validator.numberOfInvalids();if(errors){var message=errors==1?'You missed 1 field. It has been highlighted above.':'You missed '+errors+' fields.  They have been highlighted above.';$('p#competition_error').html(message).show();}else{$('p#competition_error').html('').hide();}}

/* on load */
$(document).ready(function(){$.validator.messages.required="";$('form#competition_form').validate({submitHandler:competitionProcess,invalidHandler:competitionInvalidHandler});$('.film').css('opacity',0.5);$('.film.active').css('opacity',1.0);$(function(){$('#film_details').height(0);showFilm($('.film.active').attr('id'),$('.film.active').find('a').attr('rel'));});$('.film').click(function(){showFilm($(this).attr('id'),$(this).find('a').attr('rel'));$('.film').removeClass('active').fadeTo('fast',0.5);$(this).addClass('active').fadeTo('fast',1.0);}).hover(function(){if(!$(this).hasClass('active')){$(this).fadeTo('fast',1.0);}},function(){if(!$(this).hasClass('active')){$(this).fadeTo('fast',0.5);}});$('.film a').removeAttr('href').removeAttr('title');$('.making_of a').click(function(){showMakingOf($(this).attr('rel'));return false;});});