/* JQUERY CUSTOM COMMANDS */
$(document).ready(function(){ /* start javascript when document is loaded */

	/* FILTER DROPDOWNS */
	$('.selector ul li').hover(function() {
	    $(this).find(".selectorMouseover").show();
	}, function() {
	$(this).find(".selectorMouseover").hide();
	});
	$('.selector ul li.selectContent').hover(function() {
	    $(this).find(".selectContentMouseover").show();
	    $(this).css('border','1px solid #81a0c2');
	}, function() {
	$(this).find(".selectContentMouseover").hide();
	$(this).css('border','1px solid white');
	});

	/* FILTER DROPDOWNS */
	$('.filter ul li').hover(function() {
	    $(this).find("ul").show();
	}, function() {
	    $(this).find("ul").hide();
	});

	/* DROPDOWN DROPDOWNS */
	$('.dropdown ul li').hover(function() {
	    $(this).find("ul").show();
	}, function() {
	    $(this).find("ul").hide();
	});

	/* DROPDOWN TOTALLABEL */
	$('.totalLabel .dropdown ul li').hover(function() {
	    $(this).find("ul").show();
	}, function() {
	    $(this).find("ul").hide();
	});

});