$(document).ready(function() {
	if (document.getElementById('name') && document.getElementById('urlName')) {
		//set up the URL Name filter
		var theName = $('#name');
		var theURLName = $('#urlName');
		theName.bind('keyup', function() {
			theURLName.attr("value", theName.val().replace(/[^A-Za-z0-9 ]/g, '').replace(/ /g, '-').toLowerCase());
		});
	}
	
	$('#changePic').click(function() {
		$(this).stop();
		$(this).parent().html('<label for="filename"><strong>Picture</strong><div><input id="filename" class="input" type="file" name="filename" /></div>');
	});
	
	$('#changeVideo').click(function() {
		$(this).stop();
		$(this).parent().html('<label for="video"><strong>Video</strong><div><input id="video" class="input" type="file" name="video" /></div>');
	});
});