$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a.single_image").fancybox();

	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	: 'none',
				'transitionOut'	: 'none'
	});
	
});

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 1,
  interval: 10,
  width: 180,
  height: 200,
  theme: {
    shell: {
      background: '#660035',
      color: '#ffffff'
    },
    tweets: {
      background: '#ffffff',
      color: '#660035',
      links: '#9c9e9b'
    }
  },
  features: {
    scrollbar: false,
    loop: true,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'default'
  }
}).render().setUser('aigaknoxville').start();

setTimeout(function(){
var lh = $("#contentleft").height();
var rh = $("#contentright").height();

if(lh>rh)
{
	$("#contentwrap").css({"height":lh +100});

}else{
	$("#contentwrap").css({"height":rh +100});
}



}, 2000);

