$(document).ready(function(){
	// fix the videos to be nicer / wider
	$("div.post").each(function(){
		var ID = $(this).attr("id")
		if($(this).hasClass("video")){
			var EMBED_CODE = $("#"+ID+" div.embed").html()
			var wR = /width="[0-9]*"/g;
			EMBED_CODE = EMBED_CODE.replace(wR, "width=\"660\"")
			var hR = /height="[0-9]*"/g			
			EMBED_CODE = EMBED_CODE.replace(hR, "height=\"400\"")     

			if($(EMBED_CODE).find("param[value^='http://www.youtube.com']").length > 0) {		
		        var oldOpts = /rel=0/g;
		        var newOpts = "rel=0&amp;hd=1&amp;color1=0xFFFFFF&amp;color2=0xFFFFFF";
				EMBED_CODE = EMBED_CODE.replace(oldOpts, newOpts)
			}
			$("#"+ID+" .embed").html(EMBED_CODE)             
		}
	})
	
	$("#join-newsletter").click(function(){
		var em = window.prompt("Enter your email address and we'll add you to our mailing list.", "")
		if(em){
			$("#newsletter #mb-jtyuk-jtyuk").val(em)
			$("#newsletter-form").submit()
		}
		return false
	})
})
