// JavaScript Document



var testimonials = new Array();

testimonials[3]	= '<p>"<strong>DNS IT</strong> have supported us in the relocation and establishment of two offices within short timeframes to accommodate over 50 people to meet our specific project needs on the Cross City Tunnel.  The planning and support has been first class which resulted in seamless delivery without disruption.  The staff at DNS IT are great to work with, nothing is too hard!"<br/><strong class="font_italic">Project Manager, Sydney Cross City Tunnel</strong>';

testimonials[1]	= '<p>"<strong>DNS IT</strong> has been supporting our wide area network and providing integration services to our company for more than 8 years. Their service and commitment to every task has been impeccable."<br/><strong class="font_italic">IT Manager, Lowndes Lambert</strong>';

testimonials[2]	= '<p>"The service provided by DNS IT was professional and reliable. It made the process of moving offices much easier, even enjoyable."<br/><strong class="font_italic">President, DBM International Ltd</strong>';

testimonials[0]	= '<p>"I would like to thank you and your team for a job well done over the  Australia day weekend when our IT storage infrastructure was upgraded. This  task was significant, as dealing with customer data is always tricky. DNS IT  project managed the upgrade well. Impressive was the collaboration between  third party providers."<br/><strong class="font_italic">Global Manager Information Services,<br/>Downer EDI Works Pty Ltd<br/></strong>';





function testimonialsContext(){

	(testimonials_num>= testimonials.length-1) ? testimonials_num=0 : testimonials_num++ ;

	$("#testimonials_div").fadeTo(200,0.1,function(){

		$(this).html(testimonials[testimonials_num]).fadeTo('slow',1);

	});

	

}



var testimonials_num=-1;



function winOnload(){

	Nifty("div#col_products_01","medium bl br tr tl");

	Nifty("div#col_products_02","medium bl br tr tl");

	Nifty("div#col_products_03","medium bl br tr tl");

	Nifty("div#col_products_04","medium bl br tr tl");

	setInterval("testimonialsContext()",10000);

}



if (document.all){

	window.attachEvent('onload',winOnload);

}else{

	window.addEventListener('load',winOnload,false);

}

