/*
* Adds collapsibles to selectors
*/
$(document).ready(function() {
	
	$('.more-content').addClass('hidden');
  $('.more').addClass('collapsible');
	$('.collapsible').prepend('<p><a href="#">Show more</a></p> ');
		
	$('.collapsible a').bind('click', function() {
  		$(this).parent().next().slideToggle('fast', function(){
			var txt = $(this).is(':visible') ? 'Show less' : 'Show more';
			if  (txt == 'Show more') {
				$(this).prev().children(':first-child').html(txt).addClass('showit');
			} else {
				$(this).prev().children(':first-child').html(txt).removeClass('showit');				
			}
		});
		return false;
	});
});

/*
$(document).ready(function(){
  $("#name").focus();
});
*/

function writeDate() {
  var fullDate = new Date();
  var thisYear = fullDate.getFullYear();
  var x = document.getElementById('date').innerHTML = "2000 &#8211; " + thisYear;
}
