$(document).ready(function() {
	// LOGIN
	$(".topMenuAction").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
			$("#slider").animate({ 
				marginTop: "-130px"
				}, 500 );
			$("#topMenuImage").html('<img src="_Pics/open.png">');
			$("#openCloseIdentifier").show();
		} else {
			$("#slider").animate({ 
				marginTop: "0px"
				}, 500 );
			$("#topMenuImage").html('<img src="_Pics/close.png">');
			$("#openCloseIdentifier").hide();
		}
	});
	
	
	// FEATURE LIST
	$('#tabs li a').featureList({
		output: '#output li',
		start_item: 0
	});
});

