$(document).ready(function () {

///////////////		tweet

	$(".tweet").tweet({
	  join_text: "auto",
	  username: "justboris",
	  count: 1,
	  auto_join_text_default: "I said,", 
	  auto_join_text_ed: "we",
	  auto_join_text_ing: "we were",
	  auto_join_text_reply: "we replied",
	  auto_join_text_url: "we were checking out",
	  loading_text: "loading tweets..."
	});

///////////////		slidingBox from jqueryfordesigners.com

	var container = $('div.sliderGallery');
	var ul = $('ul', container);
	
	var itemsWidth = ul.innerWidth() - container.outerWidth();
	
	$('.slider', container).slider({
		min: 0,
		max: itemsWidth,
		handle: '.handle',
		stop: function (event, ui) {
			ul.animate({'left' : ui.value * -1}, 500);
		},
		slide: function (event, ui) {
			ul.css('left', ui.value * -1);
		}
	});
	
///////////////		new window

	$("a[href*='http://']:not([href*='http://www.boriskan.com'])").click( function() {
	window.open(this.href);
	return false;
	});


});
