$(function() {
	$(".colorbox").colorbox({iframe:true, innerWidth:640, innerHeight:385});	

	$("#roller").jCarouselLite({
		vertical: false,
		hoverPause:true,
		visible: 3,
		auto:10000,
		speed:1000,
		btnNext: ".next",
		btnPrev: ".prev"
	});
	
  $(".scrollbtn").click(function () { 
    $(this).blur();
  });
	
	
	
   $('#news-toggle2').hide();
   $('a#news-link2').click(function() {
      $('#news-toggle2').show();
      $('#news-toggle1').hide();
			$(this).addClass('sel');
			$('a#news-link1').removeClass(); 
      $(this).blur();
	  	return false;
   });
   $('a#news-link1').click(function() {
      $('#news-toggle1').show();
      $('#news-toggle2').hide();
			$(this).addClass('sel');
			$('a#news-link2').removeClass(); 
			$(this).blur();
	  	return false;
   });

	});	
