// JavaScript Document
        $(document).ready(function(){
		  $(".g2-single-image").parent().css({'padding' : '0'});
		  $(".g2-single-image").parent().css({'margin' : '0'});
		  $(".g2-single-image").parent().find(".block").css({'display' : 'none'});		  
  		  $(".g2-tools-right").hover(
  		    function () {
   		     $(this).css({'background-image' : 'url(templates/kmo/design/g2/g2-slideshow-button-over.gif)'});
   			   }, 
  			    function () {
   		     $(this).css({'background-image' : 'url(templates/kmo/design/g2/g2-slideshow-button.gif)'});
  			    }
 			   );
		$(".g2-prev").hover(
  		    function () {
   		     $(this).css({'background-position' : '12px'});
   			   }, 
  			    function () {
   		     $(this).css({'background-position' : '8px'});
  			    }
 			   );

		$(".g2-next").hover(
  		    function () {
   		     $(this).css({'background-position' : '5px'});
   			   }, 
  			    function () {
   		     $(this).css({'background-position' : '9px'});
  			    }
 			   );

			
		$(".g2-tools-right").click(function() {
  			$('main-image').click();
			});
			
			
	  });
