/* 
// loaderscript for the text and thumbs.
// BJG 2009 - http://bjorngustafsson.com
*/	
	
	// load text into the big text layer...	
	function loadText(id) {
		jQuery("#c_info").hide();
		jQuery("#img_content").hide();
		jQuery("#text_content").hide();
		jQuery("#text_content").load("infotext.php?o="+id+"").fadeIn("slow");
	}
	// load text into the small collection info layer...	
	function loadText2(id) {
		jQuery("#text_content").hide();
		jQuery("#c_info").load("c_infotext.php?o="+id+"").fadeIn("slow");
	}
	// load the thumbs into the image layer...
	function loadCollection(id) {
		jQuery("#text_content").hide();
		jQuery("#c_info").hide();
		jQuery("#img_content").hide();
		jQuery("#img_content").load("kollektionbilder.php?o="+id+"").fadeIn("slow");
}