var $j = jQuery.noConflict();

var vidGallery = {
	index:1,
	init:function(){$j.getJSON("http://mountmadonnaschool.org/values/wp-content/plugins/values/functions/vid-widget.php",{id:1},function(json){vidGallery.index=1;vidGallery.write(json);});},
	get:function($d){$j.getJSON("http://mountmadonnaschool.org/values/wp-content/plugins/values/functions/vid-widget.php",{id:$d},function(json){vidGallery.index=$d;vidGallery.write(json);});},
	write:function(json){$j("#vid-widget").html('<table id="vid-box" class="gallery-box" width="100%" cellspacing="0"><tr><td class="gallery-title" colspan="2"><a href="http://www.mountmadonnaschool.org/values/videos/">Video Gallery</a></td></tr><tr><td class="gallery-links" align="left"><a href="javascript:vidGallery.get(1);">1</a> | <a href="javascript:vidGallery.get(2);">2</a> | <a href="javascript:vidGallery.get(3);">3</a> | <a href="javascript:vidGallery.get(4)">4</a></td><td class="gallery-links" align="right"><a href="javascript:vidGallery.prev();">prev</a> | <a href="javascript:vidGallery.next();">next</a></td></tr><tr><td class="gallery" colspan="2" align="center" id="movie"><object width="200" height="160"><param value="http://www.youtube.com/v/'+json.url+'&hl=en&fs=1&rel=0" id="vid_gal_param" name="movie"><param value="true" name="allowFullScreen"><param value="always" name="allowscriptaccess"><param value="transparent" name="wmode"><embed width="200" height="160" id="vid_gal_embed" wmode="transparent" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/'+json.url+'&hl=en&fs=1&rel=0"></object></td></tr><tr><td colspan="2" class="gallery-desc" id="desc"><span class="gallery-desc-title">Now Playing: </span>'+json.desc+'</td></tr></table>');},
	next: function(){if(vidGallery.index==4){vidGallery.index=1}else{vidGallery.index++}vidGallery.get(vidGallery.index)},
	prev: function(){if(vidGallery.index==1){vidGallery.index=4}else{vidGallery.index--}vidGallery.get(vidGallery.index)}
}