// JavaScript Document
jQuery.noConflict();

// Method 1
jQuery(document).ready(function($){
   // $("div").hide();
   $('.size-full').removeAttr("width");
   $('.size-full').removeAttr("height");
   $('.size-full').removeClass("aligncenter");
   //$('.size-full').wrapAll('<div></div>');
   $('img.size-full').wrap(function() {
  return '<div class="wp-caption aligncenter" />';
});
   
	$(".video a").hover(function(){  
		$(this).find('.title').animate({
 			opacity: 0,
 			height: 'toggle'
		},500,'swing')
		//image
		$(this).find('img').animate({
 			opacity: 1,
		},500,'swing')
	},function(){
		$(this).find('.title').animate({
 			opacity: 0.8,
 			height: 'toggle'
		},300, 'swing')
		//image
		$(this).find('img').animate({
 			opacity: 0.2,
		},500,'swing')
	});

});