/* Epic Animation 
Copyright Mevinv 2009*/
$(document).ready(function(){

$("a#collapse").click(function(){ 
if($("#sidecontent").is(":hidden"))
	{
	$("#sidecontent").slideDown("slow");
		  	  $("#subcontent").animate({
	  width: "70%"
     }, 1500, moveback);
	

	} else {
$("#sidecontent").animate({ 

		left:"-150px",
		opacity: "0",
		display: "none"
      }, 1500 ,move );
	  $("#sidecontent").slideUp("slow");

	}


	   });
	  function move(event) 
{
	  $("#sidecontent2").animate({
								 
	  bottom: "100%",
	  left: "30%"
     }, 1500, size);
	 } 
	 	  function moveback(event) 
{
	  $("#sidecontent2").animate({
	  	  bottom: "0",
	  left: "0"

     }, 1500, shrink);
	 } 
function size(event) 
{
	  $("#subcontent").animate({
	  width: "100%"
     }, 1500);
	 }
function shrink(event)
{
$("#sidecontent").animate({ 
		left:"0px",
		opacity: "1",
      }, 1500 );
	  }
});
 