$().ready(function(){
	
	/* Load common functions from common-lib.js 
	initLinks();*/
	
	/* Specific functions Campaignsite */
	//if( $('form').length == 0 ){
		$('.special').corner('7px ie6fixbothint');
	//}	
	
	$('#inspiratie .item').hover(
		function(){
			$(this).addClass('hover');
		},function(){
			$(this).removeClass('hover');	
		}
	) 
				 
});

function initKickoffForm(){
	$('ol.blockOverig').hide();
	$('ol.blockType').hide();
	$(':radio').click(function(){
		if( $(this).attr('name') == 'frmSchool'){
			if( $(this).val() == 'Anders'){
				$('ol.blockOverig').show();
				$('ol.blockType').hide();
			}else{
				$('ol.blockOverig').hide();
				$('ol.blockType').show();
			}
		}
		
	});
	$('#frmKickoff').submit(function(){
		nSchool = $("input[name='frmSchool']:checked").length;
		if(nSchool == 0){
			alert('Geef aan waar u van bent');
			return false
		}
		return true;
	})
	
}