$(function() {
	$('#home section:eq(1)').css({ 'margin' : '0 8px 0 11px' });
	$('#home section:eq(2)').css({ 'width' : '265px' });
	
	randomImage('/wp-content/themes/channel2011/');
});

function randomImage(themepath) {
	var images = ['hero-one.jpg', 'hero-three.jpg', 'hero-four.jpg', 'hero-five.jpg'];
	$('<img class="hero-image" src="'+themepath+'images/home/' + images[Math.floor(Math.random() * images.length)] + '">').appendTo('#home-hero');
}
