/*
* Sliding panel on top of website - "Explore LexisNexis"
* Modified by: Ricardo Zea
* Project: LexisNexis' Communities
* 
* Original script from: http://net.tutsplus.com/javascript-ajax/build-a-top-panel-with-jquery/
*/

$(document).ready(function() {
	$("div.panel_button").click(function(){		
		$("div#panel").animate({
			height: "124px"
		})
		.animate({
			height: "117px"
		}, "fast");
		$("div.panel_button").toggle();
		$("img.survey-button").fadeOut('fast');
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		$("img.survey-button").fadeIn('slow');
		
   });	
	
});