
$(document).ready(function(){
 //scroll latest news
  $('div#testimonials').cycle({ 
    cleartype:  1 ,
    timeout:  8000,
    speed: 400, 
    fx: 'scrollLeft'
  });
  
  $('a[@rel$="external"]').click(function(){
   	    this.target = "_blank";
 	 });

	$('.popup').popupwindow();
  
});

$(window).load(function() {
						   

	$('div.survey').hide();
	$('.survey_question a').click(function() {
		$('.survey').hide();
		var $location = $(this).attr('href');
		$($location).toggle(400);
		return false;
	});

	$('div.more_testimonials').hide();
	$('p.more_testimonials a').click(function() {
		$('.expect').hide();
		var $location = $(this).attr('href');
		$($location).toggle(400);
		return false;
	});

});
