jQuery(document).ready(function($) {
	if ($("#admin-header").length == 0) {
		$(".video-section .video").each(function() {
			var container = $(this).parent(); 
			container.addClass("with-video");
			
			$(this).text('If you cannot see this video, click here');
			
			// Embed video under link
			var videoLink = $(this).attr('href');
			
			container.append('<div class="video"/>');
			var wrapper = container.find("div.video");
			wrapper.append($(this));
	
			var width = '678';
			var height ='400';
			
			var re = /v=(.[^&]*)/;			
			if (re.test(videoLink)) {
				var videoId = re.exec(videoLink)[1];
				
				var embedHtml = '<iframe width="'+ width +'" height="'+ height +'" src="http://www.youtube.com/embed/' + videoId + '" frameborder="0" allowfullscreen></iframe>';
				
				wrapper.prepend(embedHtml);
			}
		});
	}
	
	$(":input[name*='.country']").addressHandler();
	
	$(".auto-submit").each(function(){
		$(this.form).find(":submit").hide();
	});
	$(".auto-submit").change(function(){
		this.form.submit();
	});
});
