		$(function() {
		     
		    $("#videos a").flowplayer({src: "http://www.elon.edu/test/tpaulson/redesign/test/swf/flowplayer-3.1.2.swf" , wmode: 'opaque'}, {
		    
		    		plugins: {
		    			controls: null
		    		}
		    }).hover(function() { 
             
				        // find div.info element inside the player container and show it 
				        $("div.vid_caption", this).fadeTo("slow", 0.7); 
				         
				    }, function() { 
							         
				        // when mouse is removed - hide the info 
				        $("div.vid_caption", this).fadeTo("slow", 0); 
				    });  
							     
				    // initially all info elements are hidden 
				    $("div.vid_caption").css("opacity", 0); 
		
		});