$(function(){
$("#head_menu li").hover(function (){
  	var thisId = this.id;
    $('#'+thisId+' ul').fadeIn('slow');
  },function (){
  	var thisId = this.id;
	$('#'+thisId+' ul').hide();
  });

$('#login-button').click(function(){
	$('#loginArea').slideToggle(800);
	return false
});

});



$(document).ready(function() {
	$('ul#myRoundabout').roundabout({
		minOpacity: 1,
		minScale: 0.35,
		easing:'easeOut',
		duration:1200,
		autoplay:6000,
		shape: 'figure8',
		btnNext:'.prev',
		btnPrev:'.next'

	});



});


