// JavaScript Document
$(function(){
	$('h3, h4').wrapInner('<span>');
	$('#innercontainer>p:first, .column:first, ul#footer li:nth-child(2)').addClass('first');
	//$('.frontmod:nth-child(2)').addClass('middle');
	$('#innercontainer, #sidecontainer, .column, .highlight, .frontmod').wrapInner('<div class="paddedcell">')
	$('#listofachievements li:even').css('background-color','#1a1a1a').css('color','#fff');
	$('#listoftestimonials li:even, #listofpressarticles li:even').css('background-color','#1a1a1a');
	$('#amount').keypress(function(e) {
		if ( !( ((e.which>47) && (e.which<59)) || (e.which==46) || (e.which==8)) ) e.preventDefault();
		console.log("type");
	});
});

function loadvideo(video){
	$('video').mediaelementplayer({
		// if the <video width> is not specified, this is the default
		defaultVideoWidth: 608,
		// if the <video height> is not specified, this is the default
		defaultVideoHeight: 292
	});
}
