

// Apple detection object  
var Apple = {};  
Apple.UA = navigator.userAgent;  
Apple.Device = false;  
Apple.Types = ["iPhone", "iPod", "iPad"];  
for (var d = 0; d < Apple.Types.length; d++) {  
    var t = Apple.Types[d];  
    Apple[t] = !!Apple.UA.match(new RegExp(t, "i"));  
    Apple.Device = Apple.Device || Apple[t];  
}  




if (Apple.Device) {
	
document.write('<object width="480" height="270"><param name="movie" value="http://www.youtube.com/v/oddsBOx3SJw?hl=en&fs=1&autoplay=1">');
document.write('</param><param name="allowFullScreen" value="true">');
document.write('</param><param name="allowscriptaccess" value="always">');
document.write('<embed src="http://www.youtube.com/v/oddsBOx3SJw?hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="270"></embed></object>');


}


else {


document.write('<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/oddsBOx3SJw?hl=en&fs=1&autoplay=1">');
document.write('</param><param name="allowFullScreen" value="true">');
document.write('</param><param name="allowscriptaccess" value="always">');
document.write('<embed src="http://www.youtube.com/v/oddsBOx3SJw?hl=en&fs=1&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object>');


}


