$(document).ready(function(){
	var popped = false;
	function resizr(win) {
		if($(window).height() > $("body").height()){
			$(win).height($(window).height());
		} else {
			$(win).height($("body").height());
		};
		if($(window).width() > $("body").width()){
			$(win).width($(window).width());
		} else {
			$(win).width($("body").width());
		};
	};
	   
    $("#vid-container a").click(function(){
		var wid = $(this).attr('href');
		var widget_id = wid.substring(7);
       	var script = document.createElement('script');
		script.type='text/javascript';
		script.src='http://sv.liveclicker.net/service/getEmbed?client_id=157&autoplay=yes&widget_id='+widget_id+'&width=320&height=240&div_id=vidbox&player_custom_id=89';
		$('#widgetvault').append(script);
		$('#widgetvault').fadeIn();
		popped = true;
		return false;
	});
			
	$(".close").live('click', function(){
		$('#vidbox').html(''); 
		$('#widgetvault').fadeOut();	
		popped = false;
		return false;
	});		
		
	resizr("#closecover");
	
	$(window).resize(function(){
		if (popped) {
			resizr("#closecover");
		}
	});
	
});
