// JavaScript Document 

// LAUNCHFIRE NEWS LETTER SLIDER
	$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-121px"
					}, 500 );
				//$("#topMenuImage").html('<img src="/images/btn_signUp.png" alt="open" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider").animate({ 
					marginTop: "0px"
					}, 500 );
//				$("#topMenuImage").html('<img src="/images/btn_signUp.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});

//Launchfire LeftHandSide!
$(document).ready( function(){
		//				alert("!")
		$(".slDownBox ul.open").slideToggle(500, function(){$(this).parent().find('H3').css('background-position','right bottom')});
		$("H3").click(function(){
			$(this).parent().children("ul:first").slideToggle(500, function(){
			
				if(this.offsetHeight > 0){
					$(this).parent().find('H3').css('background-position', 'right bottom')					
				}else{
					$(this).parent().find('H3').css('background-position', 'right top')
				}
			});
			
		});
});	