var offer_id_json = 0;
function showPictureList(id,offer_id)
{
	offer_id_json = offer_id;
	$('.add_picture_area').hide('slow');
	$('.add_picture_area').text('x');
	$("#"+id).load(web_root+'pictures/gallery');
	$("#"+id).show("slow");
}

function assignPictureToOfer(picture_id,element_id)
{
	$(".offer_picture_b").hide('slow');
	$(".offer_picture_a").show('slow');
	$("#offer_picture_a"+element_id).hide('slow');
	$("#offer_picture_b"+element_id).html($("#offer_picture_a"+element_id).html());
	$("#offer_picture_b"+element_id).show('slow');
	$.getJSON(web_root+'offers/pictureoffer',{"offer_id":offer_id_json,"picture_id":picture_id},function(json) {
		   alert("JSON Data: " + json.communicate);
	 });
}

function closePictureOffer()
{
	$('#galleryOffer').hide("slow");
}

function registerCompanyForm(user_id)
{
	
	$("#show_registercompany").load(web_root+'companies/register');
	$("#show_registercompany").show("slow");
	
}
