window.log = function( msg ) {
    if ( window.console && console.log )
	console.log(msg)
}

//$('.widget h2').corner('top');
//$('.widget li.last').corner('bottom cc:#460606');
//$('#widget-welcome p').corner('bottom cc:#460606');
DD_roundies.addRule( '.widget h2', '6px 6px 0 0', true);
DD_roundies.addRule('.widget li.last', '0 0 6px 6px', true);
DD_roundies.addRule('#widget-welcome p', '0 0 6px 6px', true);
DD_roundies.addRule('#widget-links ul', '0 0 6px 6px', true);
DD_roundies.addRule('#widget-orders p', '0 0 6px 6px', true);

$(document).ready(function() {

    var externalLinks = [
        /\.pdf/,
        /\.doc/,
        /^http/
    ];
    
    $('a').each(function(i,o) {
        var href = $(this).attr('href');
        if ( href ||  !($(this).attr('target').length) ) {
	$(externalLinks).each(function() {
	    if ( this.test(href) ) {
	    $(o).attr('target', '_blank');
	    }
	});
        }
    });

    $('#nav a').click(function(e) {
	return;

	var href = $(this).attr('href');

	if ( href.length && href.slice(0, 1) == '#' ) {
	    //e.preventDefault()
	    $(href).show().siblings().hide()
	}

    })

    if ( location.hash.length ) {
	$(location.hash).show().siblings().hide()
    }

});

