/* default template js */
jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

$(document).ready(function()
{
	$('.show').click(function()
	{
		$('.right').hide();
		var id = $(this).parent().attr('id');
		$('#content_'+id).show();
		//$('#content_right .content').show();
		$('.title').addClass('show');
		$(this).removeClass('show');
		$(this).addClass('hide');
	});
});

