	$(document).ready(function() {

		$('#nav-secondary ul#site-nav a:odd').addClass('odd');
		$('#nav-secondary ul#area-nav a:odd').addClass('odd');

		$('#slideshow').after('<div id="slideshow-controller"></div>').cycle({
			fx: 'fade',
			speed: 2500,
			pager: '#slideshow-controller',
        	timeout: 6000,
			pause: 1,
			cleartype: 1
		});
		
		
		    $('div#selling-plan:eq(0)> div:gt(0)').hide();
    $('div#selling-plan h2.big-picture').addClass('opened');
    $('div#selling-plan:eq(0)> h2').click(function() {
        $(this).next('div:hidden').slideDown('500').siblings('div:visible').slideUp('700');
        $(this).addClass('opened').siblings('h2').removeClass('opened');
        return false;
     });

	
		
	});
	
	
