var browserName=navigator.appName.toLowerCase();
var IDie = "Microsoft Internet Explorer".toLowerCase();  
var thisIsIE  = (browserName!=IDie  ? false : true);
var thisTypeW = null;
var myWindowSize  = null;      
$().ready(function() {
 
  myWindowSize  = $(window).height();  
  if (myWindowSize  < 644)
  { $('#top').css({'padding-top': '8px'});
    $('.logosSlide').css({'margin-top': '0px'}); };

  $('.makeitscroller').jScrollPane({showArrows:true, dragMinHeight: 95, dragMaxHeight: 95, scrollbarWidth: 11, animateTo: true});
  
	$("#saytweet").getTwitter({
		userName: "siite",
		numTweets: 1,
		loaderText: "Loading tweets...",
		slideIn: true,
		slideDuration: 300,
		showHeading: false,
		headingText: "Latest Tweets",
		showProfileLink: false,
		showTimestamp: false
		});
    
    $("#saytweet a").live("click", function()
    { theLink = $(this).attr('href');
      window.open (theLink, "tweets");
      return false;      
    });
});