// JavaScript Document
var document_loaded = false;
var backgroundimg_url = null;
var dollarzeichen = $;

if(window.carpediem == undefined || window.carpediem === null){
	window.carpediem = {
		document_loaded : false,
		initElements : function(e) {
			if(carpediem.document_loaded) {
				
				if(backgroundimg_url != undefined && backgroundimg_url !='' && backgroundimg_url != null){
					$('#backgroundimage_container').html('<img src="'+backgroundimg_url+'" id="backgroundimage_picture" />');
					//$('#backgroundimage_picture').attr('src', backgroundimg_url);
				}
				
				var full_height = $(window).height() - 46;
				var full_width  = $(window).width() - 46;
				
				var img_width = $('#backgroundimage_picture').width();
				var img_height = $('#backgroundimage_picture').height();
				
				var new_width = 0;
				var new_height = 0;
					
				new_width = full_width;
				new_height = Math.ceil(img_height * new_width / img_width);
				
				if(new_height < full_height){
					new_height = full_height;
					new_width = Math.ceil(img_width * new_height / img_height);
				}
				
				//Element setzen:
				$('#backgroundimage_container').css({
					'width': full_width + 'px', 'height':full_height + 'px'
				});
				
				$('#backgroundimage_picture').css({
					'width':new_width + 'px','height': new_height+ 'px'
				});
				
				
				var content_width = $(window).width();
				var content_scroll = 'hidden';
				if(content_width < 990){
					content_scroll = 'scroll';
				}
				
				$('#content').css({
					'width': (content_width-31) + 'px', 'height':($(window).height()-46) + 'px',
					'overflow-x':content_scroll
				});
			}
		}
	}
}

//Beim Laden der Seite:
$(document).ready(function(){
	carpediem.document_loaded = true;
	carpediem.initElements(null);
	$('a.lightbox').lightBox({
		imageLoading: 'http://shop.carpediem-records.de/templates/carpe_diem/img/lightbox/lightbox-ico-loading.gif',
		imageBtnClose: 'http://shop.carpediem-records.de/templates/carpe_diem/img/lightbox/lightbox-btn-close.gif',
		imageBtnPrev: 'http://shop.carpediem-records.de/templates/carpe_diem/img/lightbox/lightbox-btn-prev.gif',
		imageBtnNext: 'http://shop.carpediem-records.de/templates/carpe_diem/img/lightbox/lightbox-btn-next.gif',
		txtOf: 'de'
	});
});

//Beim resizen der seite:
$(window).resize( carpediem.initElements );