$(document).ready(function() {


// XHTML Strict: make rel="external" links open in a new window
// because target="_blank" does not validate; 
$("a[@rel~='external']").addClass('external-link').click(function(){
window.open($(this).attr("href"));return false;
});



// generate some lorem ipsum content; 
//$('.ipsum').lorem({ type: 'words',amount:'63',ptags:false}); 
$('.ipsum').each(function(){
  var $temp1 = Math.floor(Math.random()* 61 + 31 );
  $(this).lorem({ type: 'words',amount:$temp1,ptags:false}); 
});



// add a class to the first paragraph of the first column to change it's color; 
$('#first-column-inner p:first').addClass("first");



// add classes to the menu anchors; change the classes on mouseout; 
$('#navigation ul li').each(function(){
  $(this).addClass('menu-' + Math.floor(Math.random()* 6 ).toString());
});

$('#navigation ul li a').mouseout(function(){
  $(this).parent().removeClass().addClass('menu-' + Math.floor(Math.random()* 6 ).toString());
});



// end $(document).ready(function() {
});

