/**
 * @author rgaumond
 */
function add_photo_buttons()
{
		
			alert($("cyclo_photo_button_container"));
		new Buttons.create({	id: "photos_add_button",
								enabled: true,
								onclick_actions: function(){
									ajouter_cyclo_photos();
								},
								positionning: {
									cssFloat: 'right'
								},
								child_of: "cyclo_photo_button_container",
								tip:null,
								image:"ajout_photo.gif",
								imageOn:"ajout_photoOn.gif",
								type: "image"});
								
				

		new Buttons.create({	id: "roue_photos_add_button",
								enabled: true,
								onclick_actions: function(){
									ajouter_roue_photos();
								},
								positionning: {
									cssFloat: 'right'
								},
								child_of: "roue_photo_button_container",
								tip:null,
								image:"ajout_photo.gif",
								imageOn:"ajout_photoOn.gif",
								type: "image"});					   


						   
		new Buttons.create({id:"albums_finish_button",
						   theCaption:"Terminer",
						   enabled:true,
						   onclick_actions:function(){window.location.href='http://www.cycloconcept.ca/photo_upload.aspx?execute=load'},
						   positionning:{left:'205px'},
				   		   child_of:"photo_button_container",
						   class_Prefix:"footer",
						   tip:null,
						   type:"custom"});
}