window.onload = function() {
	var url = location.href;
	var splitNumber = url.indexOf('#') + 1;
	var switchVar = url.substr( splitNumber, 999 );
	
	switch( switchVar ){
		case 'auction' : change_section('2'); break;
		case 'choose' : change_section('3'); break;
		case 'signup' : change_section('4'); break;
		default	 : change_section('1');
	}
}

$(document).ready(function(){
	
		/*$.Lightbox.construct({
				auto_relify: false,
	download_link: false,
	colorBlend: false,
	ie6_upgrade: false
       
	
    


		});*/
    
  //Name: files
	//Description: The javascript object that contains the locations of the requred files, used if you have renamed files.
	//Children: js.lightbox, js.colorBlend, css.lightbox, images.prev, images.next, images.blank, images.loading
    
  //$('a.lightbox').lightbox();
	
});

function change_section( in_section )
{
	
	$('#section_1').hide();
	$('#section_2').hide();
	$('#section_3').hide();
	$('#section_4').hide();
	$('a.footer-link').hide();
	
	$('#steps a').removeClass('current'); 
	
	switch( in_section ){
		case '2' : 
			$('#section_2').show();
			$('a.footer-link.choose').show();
			$('#steps-2 a').addClass('current'); 
			break;
		case '3' : 
			$('#section_3').show();
			$('a.footer-link.sign').show();
			$('#steps-3 a').addClass('current'); 
			break;
		case '4' : 
			$('#section_4').show();
			$('a.footer-link.best').show();
			$('#steps-4 a').addClass('current'); 
			break;
		default	 : 
			$('#section_1').show();
			$('a.footer-link.auction').show();
			$('#steps-1 a').addClass('current');
	}
	
	// Hide Fulltext Divs
	$('div.section_1_more').show();
	$('div.section_1_fulltext').hide();
	$('div.section_2_more').show();
	$('div.section_2_fulltext').hide();
	$('div.section_3_more').show();
	$('div.section_3_fulltext').hide();
	$('div.section_4_more').show();
	$('div.section_4_fulltext').hide();
}

function trigger_fulltext( in_section, in_action )
{	
	switch( in_section ){
		case '1' :
			if ( in_action == 'show' ){
				$('div.section_1_more').hide();
				$('div.section_1_fulltext').slideDown();
			} else {
				$('div.section_1_more').slideDown();
				$('div.section_1_fulltext').hide();
			}
			break;
		case '2' :
			if ( in_action == 'show' ){
				$('div.section_2_more').hide();
				$('div.section_2_fulltext').slideDown();
			} else {
				$('div.section_2_more').slideDown();
				$('div.section_2_fulltext').hide();
			}
			break;
		case '3' :
			if ( in_action == 'show' ){
				$('div.section_3_more').hide();
				$('div.section_3_fulltext').slideDown();
			} else {
				$('div.section_3_more').slideDown();
				$('div.section_3_fulltext').hide();
			}
			break;
		case '4' :
			if ( in_action == 'show' ){
				$('div.section_4_more').hide();
				$('div.section_4_fulltext').slideDown();
			} else {
				$('div.section_4_more').slideDown();
				$('div.section_4_fulltext').hide();
			}
			break;
	}
}
