$(document).ready(function(){
	var t = null;
	$(".option").click(function(event){
		t = $(this).attr('id');
		$(this).fadeTo(300,0.5).fadeTo(300, 1).fadeTo(300,0.5).fadeTo(300, 1);
		$(".option").css("border", "0px");
		$(this).css("border", "1px solid #999");
	});	
	
	$("#submit").click(function(event){
		event.preventDefault();
		w = $("#weblog").attr('value');
		tg = $("#template_group").attr('value');
		if (t == null || w == "" || tg == "") {
			alert("Please select a style");
		} else {
			var s = "?t="+t+"&w="+w+"&tg="+tg;
			$("#download").load("index.php"+s).fadeIn('slow');
		}
	});
})
