$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner than page load)
  //$('#login').hide();

   // slides down, up, and toggle the slickbox on click    
  
  $('#slick-slidetoggle1').click(function() {

	$('#toppanel').css("width","700px");

	$('#login').animate({
   width: 'toggle',
   backgroundimage: 'toggle'
  }, 1000, function() {
    // Animation complete.
	if (document.getElementById('login').style.display=='block'){
		$("#imgGetaQuote").attr({src:"images/HomeNovUpdate/GetaQuote_r.gif"});
	}
	
	else {
		$("#imgGetaQuote").attr({src:"images/HomeNovUpdate/GetaQuote.gif"});
		$('#toppanel').css("width","35px");
	}
  });



    return false;
  });
    
});

