// JavaScript Document

//requires modernizer and swfobject

$(document).ready(function(){
	
	$("body").live("videoDetect",function(event){
		
        
        
		if (event.options === undefined){
            
            return;
        }
        
        //test for flash
        if (flashembed.isSupported([9, 0, 50])){
            
             event.options.IsFlash = true;           
        }
        
		
		
        //test for html 5 video
        if (Modernizr.video.h264){
			
           event.options.IsMp4 = true; 
        }
        
       
        
	});
	
});
