// JavaScript Document

jQuery(function() {
		   
	/* ROUND CORNERS */
	$('.box-sectors,.box-services').corner();
	$('#index #sidec').corner("bottom");
	$('#index #sidec').corner("tr");




	$('#splash-text-index .item:last').css("border","0");


    $('#slider').nivoSlider({
			captionOpacity:0.5, // Universal caption opacity
			animSpeed:1000, // Slide transition speed
			pauseTime:10000 // How long each slide will show
	  });
							
	//$('#slider').data('nivo:vars').stop = true; //Stop the Slider
	
	//var my_height = $("body").height();
	//$(".bottom-box").css("top",(my_height-390)+"px");
	
	/*
	var mygallery=new fadeSlideShow({
		wrapperid: "slider", //ID of blank DIV on page to house Slideshow
		dimensions: [729, 244], //width/height of gallery in pixels. Should reflect dimensions of largest image
		imagearray: [
			["/public/userfiles/images/headings/home-image1.jpg"],
			["/public/userfiles/images/headings/home-image2.jpg"],
			["/public/userfiles/images/headings/home-image3.jpg"] 
		],
		displaymode: { type:'auto', pause:5000, cycles:0, wraparound:false },
		persist: false, //remember last viewed slide and recall within same session?
		fadeduration: 3000, //transition duration (milliseconds)
		descreveal: "ondemand",
		togglerid: ""
	 })
	*/
	$('#splash-text-index .item:eq(0)').click(function() {
	  	window.location = '/services.htm';
	});
	
	$('#splash-text-index .item:eq(1)').click(function() {
	  	window.location = '/testimonials.htm';
	});
	$('#splash-text-index .item:eq(2)').click(function() {
	  	window.location = '/contact.htm';
	});

});

