if(typeof jQuery!='undefined'){
jQuery.noConflict();
(function($) {
	$(document).ready(function($){
		$('#videoflv').show();
		$('#videohtml5').hide();
		
		if(navigator.userAgent.toLowerCase().match(/iP(hone|ad)/i)){
			$('#videoflv').hide();
			$('#videohtml5').show();
		}
		
		$('.navilink a').hover(function(){
			$(this).siblings(".raquo").show();
			$(this).siblings(".slash").hide();
		},function(){
			$(this).siblings(".raquo").hide();
			$(this).siblings(".slash").show();
		});
		
		$('.navibox').hover(function(){
			$(this).children('.navisub').slideDown("fast");
		},function(){
			$(this).children('.navisub').slideUp("fast");
		});
	});
})(jQuery);
}
