IDesign.ui.Index = function() {
	var IMG_PATH ='http://www.seotekstschrijver.nl/static/images/initial/default/';
	var BASE_PATH='http://www.seotekstschrijver.nl/';
	return {
		
		init: function() {
			
		},
		
		option_inspiratie: function(id){
			$('#div_detail_inspiratie').html('<br><center><img src="'+IMG_PATH+'loader.gif"><br><b>Loading Page...</b></center>');
			$.post(BASE_PATH + "services/initial", { id: id}, 
			function(data){
				 $('#div_detail_inspiratie').html(data);
			});
		},
		
		option_portfolio: function(id){
			$('#div_detail_portfolio').html('<br><center><img src="'+IMG_PATH+'loader.gif"><br><b>Loading Page...</b></center>');
			$.post(BASE_PATH + "services/initial", { id: id}, 
			function(data){
				 $('#div_detail_portfolio').html(data);
			});
		}
	}
	
}();

