//Call function when the dom is ready
jQuery(document).ready(function($){
			
	
// verplaats de video 
	if ( $('#content .post p iframe').length > 0 ) {
		$('#content .post p iframe').parent().addClass('vid');
		$('#content .post').find('p.vid').each( function() {
			$(this).prependTo( $(this).parents('.post') );
		});
	}

// make custom menu-item active when template '_rewrite' is used
	var customMenuItem = $('body.page-template-rewrite-php #menu-main-menu .menu-item-type-custom');
	if ( customMenuItem.length > 0  ) {
		customMenuItem.addClass('current_page_item active');
	}
	
	
// end	
});

