$(document).ready(function() {

 if ($('div').is('.home')) { //if form class is home, apply hero slideshow widget settings 

	$('div.hero div.allsubItems > div').appendTo($('div.hero'));
    $('div.hero > div').addClass('mainItem');
	$('div.hero div.allsubItems').remove();
	$('div.hero h2').remove();

    $('.home #hero .container').prepend('<div id="nav">');

    $('.hero')
    .cycle({
		fx: 'fade',
                timeout: 2000,
                next:   '#next2',
                prev:   '#prev2',
                pager:  '#nav'
	});


$("#nav a").addClass(function(i){return "item" + (i + 1);}); //adds numbered classes to home slideshow nav to style thumbnail background images

   }

});
