$(document).ready(function() 
{
	$('select#select_source option').click(function()
	{
		$("tr#zip").hide();
		$("tr#path").hide();
		$("tr#"+$(this).attr("value")).show();
	});
});

$(document).ready(function() 
{
	$(function() 
	{
		$('ul.thumbs a').lightBox({fixedNavigation:true});
	});
});

$(document).ready(function() 
{
	$(function() 
	{
		$('div.chance_img a').lightBox({fixedNavigation:true});
	});
});

