/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function changeUsato(tabOn,tabOff){
  $('#schedaUsato'+tabOn).show();
  $('#schedaUsato'+tabOff).hide();
  $('#tabUsato'+tabOff).attr('class','');
  $('#tabUsato'+tabOn).attr('class','sel');
}

function BannerOn(idbox,idApp){
	$('#boxbanner_'+idbox).attr('class','boxbanner_sel');
	//$( "#fotoIndexImg" ).effect( 'fade', "", 2500, "" )
	$.ajax({
		url : "/_inc/imagehome.asp?id="+idApp+"&s=0",
		type: "GET",
		success: function(urlData){
			$('#fotoIndex').html(urlData);
			}
		})
}

function BannerOff(idbox,idsez){
	$('#boxbanner_'+idbox).attr('class','boxbanner');
	//$( "#fotoIndexImg" ).effect( 'slide', "", 1500, "" )
	$.ajax({
		url : "/_inc/imagehome.asp?id=0&s="+idsez,
		type: "GET",
		success: function(urlData){
			$('#fotoIndex').html(urlData);
			}
		})
}

function ImagePlus(idPhoto){
	$('a.minsel').attr('class','min');
	$.ajax({
		url : "/_inc/imagedett.asp?id="+idPhoto,
		type: "GET",
		data: "" ,
		success: function(urlData){
			$('#dettaglioImg').html(urlData);
			}
		})
		$('#boxphotogall_'+idPhoto).attr('class','minsel');
}

