var $j = jQuery.noConflict();

$j(document).ready(function(){

 $j("#menuvideo").hover(function () {
	$j("#submenuvideo").fadeIn();
     }, function () {
	$j("#submenuvideo").fadeOut();
     });

 $j("#menuvideobottom").hover(function () {
	$j("#submenuvideobottom").fadeIn();
     }, function () {
	$j("#submenuvideobottom").fadeOut();
     });
 /*
 $j('#search-by-brand-select').change(function() {
	 if ($j(this).val() != '')
	     $j('#search-by-brand-form').submit();
     });
 */
});
