// JavaScript Document
    $(function() {
		  $('img.a1').click(function () { 
   $("#widgetbox").effect("size", { to: {width: 30,height: 300} }, 500);
   $(".widgethead").slideUp()
   $('img.a1').fadeOut(1);
   $('img.a2').fadeIn(1);
   $('img.b').fadeOut();

  		  });
$(function () {    
   $('img.a2').click(function () { 
  $("#widgetbox").effect("size", { to: {width: 205,height: 300} }, 500);
  $(".widgethead").slideDown();
     $('img.a1').fadeIn(1000);
     $('img.a2').fadeOut(1);
	   $('img.b').show();

							   });
});   
	
$('img.b').click(function () { 
  $("p.menu").fadeIn("fast");    
  $("li.tweet").fadeOut("slow");
  $("p.facebook").fadeOut("slow");
  $("p.lastfm").fadeOut("slow");
  $(".widgethead").slideUp();


    });

	$('a.twitter').click(function () { 
  		$("p.menu").fadeOut("slow");
  		$("li.tweet").fadeIn("slow");  
	    $(".widgethead").slideDown()

	});
	$('a.facebook').click(function () { 
  		$("p.menu").fadeOut("slow");
  		$("p.facebook").fadeIn("slow");  
 	    $(".widgethead").slideDown()

	});
	$('a.lastfm').click(function () { 
  		$("p.menu").fadeOut("slow");
  		$("p.lastfm").fadeIn("slow");  
	  $(".widgethead").slideDown();
	});

        	$("#demoOne").jqGalScroll({height:300,width:306,ease:'easeInOutCubic',speed:1000});

    });