$(document).ready(function()
  {
    //hide the all of the element with class songs
    $(".songs").show();
    //toggle the componenet with class songs
    $(".min").click(function()
    {
      $(this).next(".songs").toggle(0);
    });
 });

$(function() {
	$("#player_background").corner("10px");
	$(".songs").corner("15px");
	$(".login").corner("10px");
});

$(function() {
  $('.topmenu').click(function() {
  $('#content').load($(this).attr('href'), function() {
   $(this).hide()
     .appendTo('#right_side')
     .show(0);
   });
   return false;
  })
 });
 
