//$(document).ready(function(){
//original = $('.sideNav a').css('background-color');
//$('.sideNav a').hover(function() { //mouseover
//var col = '#fff';
//$(this).animate({'backgroundColor': col, color: "#2a8cd7" }, 1000);
//},function() { //mouseout
//$(this).animate({'backgroundColor': original, color: "#fff" },1000);
//});
//});
    $(document).ready(function(){ 
        $("ul.sf-menu").superfish({ 
            animation: {height:'show'},   // slide-down effect without fade-in 
            delay:     400               // 1.2 second delay on mouseout 
        }); 
    });
//change background shap
$(function(){ 
	 settings = {
          tl: { radius: 0 },
          tr: { radius: 50 },
          bl: { radius: 0 },
          br: { radius: 50 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
  $('#sidebar').corner(settings);
});;
$(function(){ 
	 settings = {
          tl: { radius: 0 },
          tr: { radius: 50 },
          bl: { radius: 0 },
          br: { radius: 50 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div"]
      }
  $('#sidebarMore').corner(settings);
});;
$(function(){
	$(".GeneralContent").accordion({
		autoHeight:false,
		 collapsible: true,
		 header: "h3" 
		 });
	$(".MoreContent").accordion({
		 active: false,
		 collapsible: true,
		 header: "h3" 
		 });
	$(".SPContent").accordion({
        active: false,
		autoHeight:false,
		collapsible: true,
		header: "h3" 
		 });
});


