var print_sections = ['overview','photos','particulars','map'];
var hash = document.location.toString().split('#')[1];
var selections = hash.split(',');
//alert(selections);

function toggle_elements(){
	
	$.each(print_sections, function( intIndex, objValue ){
		if( $('#print_' + objValue).is(':checked') )	$('#'+objValue).show();
		else											$('#'+objValue).hide();
	});
	
	return;

}

$(document).ready(function(){
	
	$('a#print').attr('href', 'javascript:window.print();');
	

	$.each(print_sections, function( intIndex, objValue ){
		
		if($.inArray(objValue, selections)!=-1){
			$('#print_' + objValue).attr('checked', 'checked');
		}
		else{
			$('#'+objValue).hide();
		}
	
	});
	


	$('#elements input').change(toggle_elements);
	
});

