jQuery(document).ready(function($) 
{
	$('.examples img').hover(function() {
			var src = $(this).attr("src").replace("_bw.png", ".png");			
			$(this).attr("src", src);
			$(this).parent().find("span, p").slideDown();
	}, function() {
			var src = $(this).attr("src").replace(".png", "_bw.png");
			$(this).attr("src", src);
			$(this).parent().find("span, p").slideUp();
	});
});

$(document).ready(function()
{
	$('.examples img').click(function () {
		$('.show_video').load('show_video.php', {'id': $(this).attr('class')}).slideDown('slow');
	});

	$('.close').live('click', function() {
		$('.show_video').hide('slow');
	});

	//roll over affect
	$('.rollover').hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('alt'));
			$(this).attr('alt', currentImg);
	}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('alt'));
			$(this).attr('alt', currentImg);
	});

	$.getJSON("http://twitter.com/statuses/user_timeline/KandK_.json?callback=?", function(data) {
			 $(".show_tweet").html(data[0].text);
	});

});
