$(document).ready(function(){
	/* Custom Select Box */
	$('SELECT').selectBox();
	
	/* Cforms Markup *
	$('#li--18').before('<div class="half-me">');
	$('#li--19').before('<div class="clear">Test</div></div>');
	*/
	
	$("tr:odd").css("background-color", "#ebfafd");
	
	$('#cf_field_18-1').before('<div>Indicate any special skills/experience</div>');
	$('#cf_field_19-1').before('<div>What type of volunteer work are you interested in?</div>');
	$('#cf_field_19-1').append('<div class="clear"></div>');
	//$('#sendbutton').before('<button class="sendbutton">Clear</button>');
	
	//Default Size
	var size = 3;
	$('.bigger').click(function(){
		if(size < 5){
			var currentFontSize = $('.post,.story-block,h3, p').css('font-size');
		    var currentFontSizeNum = parseFloat(currentFontSize, 10);
		    var newFontSize = currentFontSizeNum*1.2;
		    $('.post, .post ul,.story-block,.service-links,.event-heading,#maps,h3, p').css('font-size', newFontSize);
		    size++;
	    }
	});
	
	$('.smaller').click(function(){
		if(size > 0){
			var currentFontSize = $('.post, .story-block, p').css('font-size');
		    var currentFontSizeNum = parseFloat(currentFontSize, 10);
		    var newFontSize = currentFontSizeNum*0.8;
		    $('.post, .post ul,.story-block,.service-links,.event-heading,#maps,h3, p').css('font-size', newFontSize);
		    size--;
	    }
	});
	
	$("#cformsform").validate();
});
