$(document).ready(function() {
	
	
// Add 'pager' to homepage slideshow	
	$('<div id="slide_nav"></div>').appendTo('#home_slideshow');
	
	
// Assign a class name of type to all input	
	$('input').each(function() {
    var inputType = $(this).attr('type');   
    $(this).addClass(inputType);
  });


// Cycle configuration for homepage slideshow
	$('body#home #content ul#feature').cycle({
		fx:	'fade',
		timeout: 5000,
		speed: 750,
		pager: '#slide_nav'
	});
	
	
});
