$(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() {
    //$('#login').slideToggle(1000);
	$('#login').animate({
   width: 'toggle',
   backgroundimage: 'toggle'
  }, 1000, function() {
    // Animation complete.
	if (document.getElementById('login').style.display=='block'){
		$("#imgGetaQuote").attr({src:"images/GetaQuote_r.gif"});
		
	}
	else {
		$("#imgGetaQuote").attr({src:"images/GetaQuote.gif"});
	}
  }); 

    return false;
  });
    
});

