$(document).ready(function()
{
	$('#thumbs a:first, #pictures div.big_picture:first').addClass('selected');
	$('#thumbs a').css("", "");

	$('#thumbs a').click(function()
	{
		$('#thumbs a').removeClass('selected');
		$(this).addClass('selected');

		var thisTarget = $(this).attr('href');

		$('#pictures div.big_picture').removeClass('selected');
		$(thisTarget).addClass('selected');
		this.blur();
		return false;
	});
});