// JavaScript Document
$(function() {
	$( "button, input:submit" ).button();	
	
	$(".showrlmeta").button({
		icons:{
            		primary: "ui-icon-plus"
        }
	});
	$(".showrlmeta").click(function(){
			var wpid = $(this).attr('data-wpid');
			
			$.ajax({
				url: '/awsgen/doit.php?post_id='+wpid,
				cache: false,
				success: function(html){
				   	$('#embedbox').replaceWith(html);   
				    $('.rlmetadata').slideToggle();
				}
			});
				
		
		return false;
	});
	
	$("#searchbutton").click(function(){
		if($("#s").val()!=''){
			$("#searchform").submit();
		}
		
		return false;
	});
});
