addEvent(window, 'load', initCorners);

function initCorners() {
var settings = {
tl: { radius: 5 },
tr: { radius: 5 },
bl: { radius: 0 },
br: { radius: 0 },
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, "h2");
}



$(document).ready(function(){
    jQuery('#mycarousel').jcarousel();

    $('#timeline').flash(
        { src: 'media/header_938x200_cs3.swf',
          width: 938,
          height: 200 },
        { version: 8 }
    );

$('.hints').focus(function() {
value=$(this).val();
$(this).attr("value","");
});
$('.hints').blur(function() {
if($(this).val()=="") {
$(this).val(value);
}
});

});



