var sec = 8;

$(function(){
	$('#slides').slides({
		preload: true,
		randomize: true,
		autoHeight: true,
		slideSpeed: 1000,
		play: sec*1000
	});
});

$(document).ready(function(){
	$('.featureImage').hover(function(){
		$('#featureTitle').html('<strong>'+$(this).attr('title')+'</strong>')
	},function(){
		$('#featureTitle').html("Features for you to enjoy!")
	});
});
