
$(function() {

	$('#page_content a.thumb').lightBox();
	
	$('.tab_contents_container .tab_content:first').show();
	
	$('.tab_navigation a').bind('click',function () {
		$('.tab_contents_container .tab_content').hide();
		$('.tab_contents_container #'+ $(this).attr('rel') +'').show();
		return false;
	});
	
	$('.accordion .td_first a').each(function(){
		$(this).bind('click',function(){
			$content = $(this).parent().parent().next('.accordion-content');
			if($content.attr('id') != 'current'){
				$content.show();
				$content.attr('id','current');
			}
			else
			{
				$content.hide();
				$content.removeAttr('id');
			}
			return false;
		});	
	
	});
	
});

