$().ready(function()
{
	$('.current-menu-ancestor').addClass('chosen_one');
	$('.sub-menu').parents('.menu-item').children('a').click(function()
	       {
				if($(this).parents('.menu-item').hasClass('chosen_one')) {
					$(this).parents('.menu-item').children('ul').toggle('fast');
					$(this).parents('.menu-item').removeClass('chosen_one');
				}
				else {
					$('.chosen_one ul').toggle('fast');
					$('.chosen_one').removeClass('chosen_one');
					$(this).parents('.menu-item').addClass('chosen_one');
					$(this).parents('.menu-item').children('ul').toggle('fast');
				}
				return false;
	       });
		   
	$('.brand1, .brand2, .brand3').mouseenter(function()
			{
					$(this).children('div').show('fast');
			});
	$('.brand1, .brand2, .brand3').mouseleave(function()
			{
					$(this).children('div').hide('fast');
			});
	/*$('#the-text a[href*="vimeo"]').each(function(){
		var href = $(this).attr("href");
		var img = $(this).html();
		$(this).parent().html('<a href="'+href+'" rel="the-group">'+img+'</a>');
	});*/
});
