jQuery(document).ready(function($) {
$(function(){
	$('#nav ul li a')
		.css( {backgroundPosition: "-43px 43px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-43px 86px)"}, {duration:250})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(43px 43px)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "-43px 43px"})
			}})
		})
		
});
});

curvyCorners.addEvent(window, 'load', initCorners);

  function initCorners() {
    var settings = {
      tl: { radius: 10 },
      tr: { radius: 10 },
      bl: { radius: 10 },
      br: { radius: 10 },
      antiAlias: true
    }

    /*
    Usage:

    curvyCorners(settingsObj, selectorStr);
    curvyCorners(settingsObj, Obj1[, Obj2[, Obj3[, . . . [, ObjN]]]]);

    selectorStr ::= complexSelector [, complexSelector]...
    complexSelector ::= singleSelector[ singleSelector]
    singleSelector ::= idType | classType
    idType ::= #id
    classType ::= [tagName].className
    tagName ::= div|p|form|blockquote|frameset // others may work
    className : .name
    selector examples:
      #mydiv p.rounded
      #mypara
      .rounded
    */
    curvyCorners(settings, ".roundBoxesContainer");
	// curvyCorners(settings, ".roundBoxesInner");
  }
  
<!--
function MM_jumpMenuGo(objId,targ,restore){ //v9.0
  var selObj = null;  with (document) { 
  if (getElementById) selObj = getElementById(objId);
  if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0; }
}
//-->


   

    jQuery(document).ready(function($) {
	$(function(){
     // hides the slickbox as soon as the DOM is ready
      $('#slickbox').hide();
     // shows the slickbox on clicking the noted link  
      $('#slick-show').click(function() {
        $('#slickbox').show('slow');
        return false;
      });
     // hides the slickbox on clicking the noted link  
      $('#slick-hide').click(function() {
        $('#slickbox').hide('fast');
        return false;
      });
     
     // toggles the slickbox on clicking the noted link  
      $('#slick-toggle').click(function() {
        $('#slickbox').toggle(400);
        return false;
      });
    });
	});


