$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'dark_rounded',slideshow:2000, autoplay_slideshow: true,show_title:false});
	$("a[rel^='prettyPhoto_static']").prettyPhoto({animationSpeed:'slow',theme:'dark_rounded',slideshow:2000, autoplay_slideshow: false,show_title:false});
	$("#slider").easySlider({controlsShow: false,auto: true,continuous: true, vertical: true});
	MakePrettyDatesPrettier();
});
function MakePrettyDatesPrettier()
{
	$(".pretty-date .prettier-date").each(function()
	{
		var a = prettyDate($(this).html());
		if (a)
		{
			$(this).html(a);
			$(this).show();
			$(this).prev().hide();
		}
	});
}

function showTweets()
{
  new TWTR.Widget({
    version: 2,
    type: 'profile',
    rpp: 6,
    interval: 6000,
    width: 242,
    height: 236,
    theme: {
      shell: {
        background: '#171717',
        color: '#ffffff'
      },
      tweets: {
        background: '17132a',
        color: '#ffffff',
        links: '#5300EE'
      }
    },
    features: {
      scrollbar: true,
      loop: false,
      live: false,
      hashtags: true,
      timestamp: true,
      avatars: false,
      behavior: 'all'
    }
  }).render().setUser('DFusionTwit').start();
}
