$(document).ready( function () {
  $('li').hover(
    function () { //in
      $(this).find('ul:first').stop(true, true).animate({opacity: 100}, 150).slideDown("slow");
    },
    function () { //out
      $(this).find('ul:first').stop(true, true).slideUp("slow");
    }
  );
/*
  $('#flash_intro #skip').animate( {opacity: 1 }, 19000, 'linear', function () {
    $('#flash_intro').fadeOut(1000, function () {
      $(this).remove();
    });
  });
*/

  $('#flash_intro #skip').click( function () {
    $('#flash_intro').fadeOut('slow', function () {
      $(this).remove();
    });
    return false;
  });
// MOVED TO CANVAS AS IT WILL MESS UP DIFFERENT LANGUAGES
//  $.inputValues({
//    '#username' : 'Username',
//    '#password' : 'Password'
//  });
	
	var cartContainer = $('#webshop_shopping_cart_wrap');
	$('dl dt, dl dd', cartContainer).hover( function() {
		var elemClass = $(this).attr('class').replace(/\S\w+\S /, '');
		$('.'+elemClass, cartContainer).addClass('highlight');		
	}, function () {
		$('dl dt, dl dd', cartContainer).removeClass('highlight');
	});
	$('#webshop_shopping_cart_wrap').hover( function() {
		$('dl', this).show();
	}, function() {
		$('dl', this).hide();
	});
	
	$('#webshop_shopping_cart_wrap').hover( function () {
		$('table', this).show();
	}, function () {
		$('table', this).hide();
	});

});
