//Sonstiges
function swap_extension(swap) {
	displayType = (get_element(swap).style.display == 'none') ? 'inline' : 'none';
	get_element(swap).style.display = displayType;
}

function send_order(){
	document.getElementById('loading').style.display='block';
	document.getElementById('complete').style.display='block';
	document.cart_overview.submit();
}


function PreviewCountry(shorthandle,name,folder,format)
{
	document.getElementById(name).src = folder + shorthandle + '.' + format;
}


function setColor(pos, color)
{
	pos.style.backgroundColor = color;
	return true;
}

// Fancybox
$(document).ready(function() {
	if($(".fancybox") || $(".gallery_image")) {
		$.getScript('functions_js/jquery.fancybox-1.2.1.js', function() {
			$('.fancybox').fancybox();
			$("a.gallery_image").fancybox();														  
		});
		$("head").append("<link>");
    		css = $("head").children(":last");
    		css.attr({
      		rel:  "stylesheet",
      		type: "text/css",
      		href: "styles/jquery.fancybox.css"
    	});
	}
});
