$(document).ready(function () {
	$("div.picture").hover(
		function () {
			$(this).children('.over').fadeIn('normal').stop(true, true);
		}, 
		function () {
			$(this).children('.over').fadeOut('normal').stop(true, true);
		}
	);
	$('.subnav li a').click(function() {
		if (($(this).attr('rel') == 'sitem')) {
			if ($(this).parent().hasClass('display')) {
				$('.subnav ul').slideUp('normal', function() {
					$('.subnav li').css('display', 'block');
					$('.subnav li').removeClass('display');
					$('.subnav ul').css('display', 'none');
				});
			}
			else {
				$('.subnav li').css('display', 'none');
				$(this).parent().parent().css('display', 'block');
				$('.subnav li').removeClass('display');
				$(this).parent().addClass('display');
				$(this).parent().css('display', 'block');
				$(this).parent().children('ul').slideDown('normal');
			}
		}
	});
});

