if (window.screen && window.screen.width >= 600) {
	var h = document.getElementsByTagName('head')[0];
	
	var c = document.createElement('link');
	c.setAttribute('rel', 'stylesheet');
	c.setAttribute('type','text/css');
	c.setAttribute('media','screen,projection');
	c.href = '/css/' + css_main;
	h.appendChild(c);
	
	if (css_main_ie60) {
		var c = document.createElement('link');
		c.setAttribute('rel', 'stylesheet');
		c.setAttribute('type','text/css');
		c.setAttribute('media','screen,projection');
		c.href = '/css/' + css_main_ie60;
		h.appendChild(c);
	}

	if (css_main_ie70) {
		var c = document.createElement('link');
		c.setAttribute('rel', 'stylesheet');
		c.setAttribute('type','text/css');
		c.setAttribute('media','screen,projection');
		c.href = '/css/' + css_main_ie70;
		h.appendChild(c);
	}
}

$(function(){
	if($("#fullsize.tall img").length){
		setTimeout(function(){
			var image_width = $("#fullsize.tall img").width();
			if(image_width < 620){
				var difference = 620 - image_width;
				var details_width = 150 + difference;
				var details_margin = 640 - difference;
				$(".itemdetails").css({
					"width": details_width + "px",
					"margin-left": details_margin + "px"
				});
			}
		}, 200);
	}
});
