$(document).ready(function() {

	$('#login_button').click(function() {
		$('#login_container').slideToggle();
		return false;
	});


	var home_tab_count = $('#header_tabs_container div.home_tab').length;
	var home_tab_current = 0;
	var home_tab_timeout = 5000;
	function autoplay() {
		$('.home_tab').addClass('hide');
		$('#hometab_' + home_tab_current ).removeClass('hide');
		
		home_tab_current = ( home_tab_current + 1 ) % home_tab_count;
		setTimeout(autoplay, home_tab_timeout);
	}
	
	setTimeout(autoplay, home_tab_timeout);
	
	
	$('a[rel=external]').click(function(){
		$(this).attr('target', '_blank');
	});
	
});


function makemail(name,domain,subject) {
	// This function builds a 'mailto' string using the given argument.
	// The purpose is to reduce spam by avoiding explicit addresses.
	s = "mailto:" + name + "@" + domain;
	str = new String(subject);
  	if ( str.search(/undefined/) == -1 ) {
		s += "?subject=Filmax: " + subject;
	}
	top.location = s;
	return;
}


