jQuery(document).ready(function(){
	
	//TEST
	// Set opacity on overlay div
	
	
	// Trigger modal window - bildeppplasting
	jQuery("input.uploadimg").click(function () {
			
		jQuery("#overlay").fadeIn('fast');
		jQuery(".bildeopplasting").fadeIn('slow');
		return false;
	});
	
	// Trigger modal window - bildestorrelse
	jQuery("a.imgsize").click(function () {
		
		//jQuery("#overlay").fadeIn('fast');
		//jQuery(".bildestorrelse").fadeIn('slow');
		sizeChooserOverlay();
		return false;
	});
	
	// Untrigger modal window with a click within the #overlay div
	jQuery("#overlay").click(function () {

		jQuery("#overlay").fadeOut(10);
		jQuery(".bildeopplasting").fadeOut(10);
		jQuery(".bildestorrelse").fadeOut(10);
		
	});
	
	// Untrigger modal window by clicking the close 'x' link
	jQuery("a.close").click(function () {
		
		jQuery("#overlay").fadeOut(10);
		jQuery(".bildeopplasting").fadeOut(10);
		jQuery(".bildestorrelse").fadeOut(10);
		
		return false;
	});
	
	jQuery("a.pl_close").click(function () {
		
		jQuery("#overlay").fadeOut(10);
		jQuery(".pricelistImageUpload").fadeOut(10);
		
		return false;
	});	
	
	jQuery("a.ap_close").click(function () {
		
		jQuery("#overlay").fadeOut(10);
		jQuery(".articlePageImageUpload").fadeOut(10);
		
		return false;
	});	
	
	
	jQuery("a#sizeChooserSubmit").click(function () {

		jQuery("form#sizeChooserForm").submit();
	});
	
	
});

function sizeChooserOverlay(){
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("#overlay").fadeIn('fast');
	jQuery(".bildestorrelse").fadeIn('slow');
	
}

function imageUploadOverlay(){
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("#overlay").fadeIn('fast');
	jQuery(".bildeopplasting").fadeIn('slow');	
	
	
}


function imageUploadSubmit(){
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("form#quickorderFrom").submit();
}

function pricelistFileUploadOverlay(){
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("#overlay").fadeIn('fast');
	jQuery(".pricelistImageUpload").fadeIn('slow');	
	
}

function pricelistOrderSubmit(){
		jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("form#pricelistOrderForm").submit();	
}


function articlePageFileUploadOverlay(){
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("#overlay").fadeIn('fast');
	jQuery(".articlePageImageUpload").fadeIn('slow');	
	
}

function articlePageOrderSubmit(){
		
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("form#articlePageOrderForm").submit();	
}

function MyPicturesUploadComplete(){
	jQuery("#overlay").fadeTo('fast', 0.80);
	jQuery("#overlay").fadeOut(10);
	jQuery(".bildeopplasting").fadeOut(10);
	jQuery('#mypicturesBody').load('/ajax/mypictures.php');
}

