$(document).ready(function() {

//Highlight URL in a blog post
$(
	function() 
	{
		$("input.field-linktothis").click(
			function()
			{
				$(this).select();
			}
		);
	}
);


//Animate Video Carousel Tab on hover

$(".tab-generic").hover(
  function(){
    $(this).animate({right:'-20px'},'fast')
  },
  function() {
    $(this).animate({right:'-25px'},'fast')
  });




});
