		function op(el){
		  if(document.getElementById('m'+el).style.display=='block'){
			document.getElementById('m'+el).style.display='none';
		  } else {
			document.getElementById('m'+el).style.display='block';
		  }
		}
		function im(el){
		  if(document.getElementById('im'+el).style.display=='block'){
			document.getElementById('im'+el).style.display='none';
		  } else {
			document.getElementById('im'+el).style.display='block';
		  }
		}
		
		function imc(el){
		  	document.getElementById('im'+el).style.display='none';
		}
		
		function nav(el){
		  if(document.getElementById('nav'+el).style.display=='block'){
			document.getElementById('nav'+el).style.display='none';
		  } else {
			document.getElementById('nav'+el).style.display='block';
		  }
		}


	
//	<script type="text/javascript"> 
//		jQuery(document).ready(function() {
//			jQuery('#mycarousel').jcarousel();
//		});

		function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });
 
    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });
 
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
 
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 2.5,
		animation: 'slow',
        wrap: 'last',
		scroll: 1,
        initCallback: mycarousel_initCallback
		
    });
});

							function cg(el){
								$('#big').animate({opacity: 0}, 'slow', function(){$('#big').attr('src', el);
//								$('#big').load(function(){$('#big').animate({opacity: 1}, 'fast');})});
								$('#big').animate({opacity: 1}, 'slow');});
								$('#gallery #r div').css({'border' : '#fff 1px solid'});
							}
							
							

$(document).ready(function(){
$("#response").hide();
$("#response").show("slow");
$("#response").load("$php #hello2");
});

