jQuery(document).ready(function(){
	
	$('#video-panel').click(function(){
		
		if( $(this).hasClass('panel-open') ) {
		
			$(this).stop().animate({left:'-265px'},400);	
			$(this).removeClass('panel-open');
			$(this).addClass('panel-closed');
		}		
		
		else  {
		
			$(this).stop().animate({left:'-4px'},400);	
			$(this).removeClass('panel-closed');
			$(this).addClass('panel-open');
		}		
	
	});
	
	$('.vid_img_wrap a').hover(function(){
	
		$(this).prepend('<div class="vid_hover"></div>');
	
	},function(){
	
		$(this).parent().find('.vid_hover').remove();
	
	
	})

})
