// Main Dom Load

function appending() {
	$("ul li:last-child").addClass('last');
	$(".colgroup .col:last-child").addClass('last');
	$(".applications figure:last-child").addClass('last');
}

function scrolltop() {

	$('#a.self').click(function() {
		$.scrollTo( '#page', 500 );
		return false;
	});

}

function contactShowSlide() {

	
	$('#select-areas').click(function() {
		
		$('#optional-selection').show("slow");
		
		return false;
	});

}

//The Dom Load
$(function(){
	
	appending();
	scrolltop();

	/*
$('#makeADifference').cycle({ 
		fx:'scrollLeft', delay: -2000, speed: 1000
	});
*/


$('#slider ul').cycle({ 
    fx:			'fade' 
    ,speed:		2500
    ,timeout:	6000
    ,pager:  '#linkNav'
    ,pause:	1
    ,next:   '#next2'
    ,prev:   '#prev2'  
     
 });


if ( $('#optional-selection').length ) { contactShowSlide(); }
 
/*
 $('#slider u').after('<ol id="sNav">').cycle({ 
    fx:			'fade' 
    ,speed:		2500
    ,timeout:	6000
    ,pager:  '#sNav',  
     
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>'; 
    } 
});
*/

	
});

