/*
	<script type="text/javascript" src="js/scrollto.js"></script>
	<script type="text/javascript" src="js/localscroll.js"></script>
	<script type="text/javascript" src="js/serialscroll.js"></script>
	<script type="text/javascript" src="js/panelscroll.js"></script>
*/
	
	document.write('<script type="text/javascript" src="js/scrollto.js" ></script>');
	document.write('<script type="text/javascript" src="js/localscroll.js" ></script>');
	document.write('<script type="text/javascript" src="js/serialscroll.js" ></script>');
	document.write('<script type="text/javascript" src="js/panelscroll.js" ></script>');
	document.write('<script type="text/javascript" src="js/jquery.marquee.js" ></script>');

$(document).ready( function(){
  $('#maindesc').corner("7px tl bl");
  $('#spotlight').corner("7px tr br");
  $('.celebspot').click(function() { window.location = '/'+this.id; } );
  $('.panel .box').click(function() { window.location = '/'+this.id; } ).corner("7px");
  $('#feature #maindesc p a').corner("7px");
  $('#question').corner("7px tr tl");
  $('#celebs h2').corner("7px tr tl");
  $('#first').corner("7px bl");
  $('#last').corner("7px br");

  
  $('.scrolling').marquee('pointer').mouseover(function () {
    $(this).trigger('stop');
  }).mouseout(function () {
    $(this).trigger('start');
  }).mousemove(function (event) {
    if ($(this).data('drag') == true) {
      this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
    }
  }).mousedown(function (event) {
    $(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
  }).mouseup(function () {
    $(this).data('drag', false);
  });

});

