$(document).ready(function(){
	$('.masthead .nav').superfish();
	$('.masthead .nav li h3').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	$('.masthead .nav ul li h4').hover(function(){
		$(this).addClass('on');
	},function(){
		$(this).removeClass('on');
	});
	$('#btnSearch').bind('click',doSearch);
});

function doSearch()
{
  var q = $('#txtSearch').val();
  if(q!='')
    window.location = window.location.protocol + '//' + window.location.host + '/videos/search.cfm?query=' + q;
}