/* Konspire Design JavaScript by Vasily Myazin */

/*
******************** Random Line Picker Script by Vasily Myazin @ Konspire Design **************************
******************** v.0.6, November 2008                                         **************************
*/

$(function(){

	window.setTimeout(
		function() {
		  $('#logo').css('opacity', .5).animate({ top: "7px", opacity: "1" }, { easing: 'swing' });
	  }
	);

	showRndLine('.showNextLine');

});


var showRndLine = function( e ) {
  
  var testim_cont = '#testimonial';
  
  var tstm = new Array;
  tstm[0] = "Konspire Design has proved itself time and again to be a dynamic, savvy internet marketing and web design firm that is agile, cutting edge, affordable and creative. <em>&mdash;Jack Binder, Producer \"Reign Over Me\", \"The Upside of Anger\" - Greentrees Films, Inc.</em>";
  tstm[1] = "Konspire Design is a great design and graphics company that is fast, responsive, reliable and effective in executing our marketing goals. <em>&mdash;Peter Onsmark, Filmbudget.com</em>";
  tstm[2] = "Konspire Design continues to be our go to company for quality design, great graphics and attention to detail in marketing our products. <em>&mdash;Michigan Film Production.com</em>";
  tstm[3] = "The artwork you have made for our next compilation is looking beautiful! I really like your touch, the colours and the style that you have used! <em>&mdash;Abhimanyu Malhotra, manager of Namaha Records, India</em>";
  tstm[4] = "Working with Konspire Design was a breeze. Thanks to them I have a great portfolio website which I can update myself, and it's also easy to find on Google. <em>&mdash;Shai Kalev, animator and programmer</em>";

  var rand_no = Math.random() * tstm.length;
  rand_no = Math.ceil(rand_no) - 1;
  var i = rand_no;

  $(testim_cont).html(tstm[i]);
  
  $( e ).click(function() {

    if (i >= tstm.length - 1) {  
      i = 0;
    } else {
      i++;
    }

    $(testim_cont).slideUp(function() { $(this).html(tstm[i]).slideDown(); });

  });


}


