<!-- Expands Sharing Area -->
$('.share-btn').click(function(){
$('#share-email-content').show();
$('#sharing-watch').toggle();
 return false;
});


$('#download-video-types dl dd').hover(
	function(){
		$(this).css("background", "#edf3f9");
	},
	function(){
		$(this).css("background", "");
	}	
);