if (typeof jQuery == 'undefined') { 
	//alert("Loading jQuery");
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");
//alert("Loaded");
}else{
	if($.ui.version){
    // jQuery UI is loaded
}else{
	//jquery is loaded but jquery UI isn't! So loadit from google.
	google.load("jqueryui", "1.7.2");
}
//alert("Yay! this site already has jQuery");
}

//put a wait in.

setTimeout("jLoaded()", 1000);

function jLoaded(){
if (typeof jQuery == 'undefined') { 
	setTimeout("jLoaded()", 500);
}else{
$("body").append("<div id=\"lightbox-panel\"><center><img src=\"http://www.allcraftsmen.co.uk/nnve/loading.gif\"></center></div><div id=\"lightbox\"> </div><div id=\"close-but\"><img src=\"http://www.allcraftsmen.co.uk/nnve/close.png\"></div>");
$("#lightbox").click(function(){
$("#lightbox, #lightbox-panel").fadeOut(300);
$("#close-but").fadeOut(300);  
});
}
}

function show_close(){
	$("#close-but").fadeIn(300);
	$("#close-but").click(function(){
$("#lightbox, #lightbox-panel").fadeOut(300);
$("#close-but").fadeOut(300);  
	});
	
}

function draw_frame(){
	$("#lightbox-panel").html("<iframe id=\"nvef\" src=\"http://www.allcraftsmen.co.uk/nnve/nve.php\" allowtransparency=\"yes\" frameborder=\"0\" width=\"100%\" height=\"100%\"> </iframe>");
}

function showit(){

$("#lightbox-panel").fadeIn(300);  
$("#lightbox").fadeIn(1000); 
setTimeout("show_close()", 1000);
$("#lightbox-panel").animate({
height: "600px"
}, 1500, function(){
			setTimeout("draw_frame()", 500);
});

}

function show_vouch(){
		showit();
	}
