jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery('ul.video-thumbs li a img').hover(
		function () {
      		jQuery(this).fadeTo("fast", 1);
		},
		function () {
			jQuery(this).fadeTo("fast", 0.15);
		}
	);				   
						   
										   
});