$(document).ready(function() {
	$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$('#featuredvid > ul').tabs();
	$("#pagenav > li > a").each(function () {
     $(this).replaceWith("<span>" + $(this).text() + "</span>");
    });
	$("a[href='http://www.mester.com/registration/book/']").replaceWith('<a title="BOOK NOW!" href="http://registration.mester.com">BOOK NOW!</a>');

	$('#speedbar span:nth-child(2)').remove();
	$('#speedbar a:nth-child(2)').each(function () {
     $(this).replaceWith("<span> &raquo; " + $(this).text() + "</span>");
    });
});
$(function() {
    $('#ciudad').change(function() {
       var x =  $(this).find('option:selected').text();
        $('#myhidden').val(x);
    });

});

 

