// Boxcon video box
$(document).ready(function() {
	var showBoxConVid='Click here view Boxcon09 Videos';
	var hideBoxConVid='Click here to hide video player';
	// append show/hide links to the element directly preceding the element with a class of "boxconvids"
	$('.boxconvids').prev().append('<a href="http://www.beatboxconvention.com/uk/boxcon09/boxcon09_video.php" class="slick-toggle" target="_blank">'+showBoxConVid+'</a>');
	$('div.boxconvids').hide();
	$('a.slick-toggle').click(function() {
		$(this).html ($(this).html()==hideBoxConVid ? showBoxConVid : hideBoxConVid);
		$('div.boxconvids').toggle(400).removeClass("hide");
		return false;
	});	
});


