$(document).ready(function() {

//set up styles for gallery, so that the gallery degrades gracefully without js enabled...
$('div.navigation').css({'width' : '235px', 'float' : 'left', 'display' : 'inline'});
$('div.content').css({'display' : 'block'});

//striping for the boat tech specs
$('div.tech-specs-half table, div.tech-specs-full table').each(function() { $(this).find('tr:odd').addClass('odd') });

$("#slider").easySlider({
	auto: false,
	continuous: false,
	nextId: "slider1next",
	prevId: "slider1prev"
});

});