function soon(){
	//alert("gunciona co–o");
	$.prompt("<p>We apoligize but, at the moment we are still under development so please, come back in a few days and you will feel the whole Neuronshaker experience. Until that happens, you can anyway contact us, we will be pleased about answering whatever you want in just a few days.</p>");
}

function sectionLoad(name){
	if (name != false){
		$("#frameAbout").css("background-image","url(img/frame"+name+".jpg)");
	}
}
$(document).ready( function() { 
	//alert("co");
	peps.rollover.init();
	$("form.jqtransform").jqTransform();
});
peps = {};
peps.rollover = {
   init: function() {
      this.preload();
      $(".roll").hover(
         function () { $(this).attr( 'src', peps.rollover.newimage($(this).attr('src')) ); },
         function () { $(this).attr( 'src', peps.rollover.oldimage($(this).attr('src')) ); }
      );
   },
preload: function(){
      $(window).bind('load', function() {
         $('.roll').each( function( key, elm ) { $('<img>').attr( 'src', peps.rollover.newimage( $(this).attr('src') ) ); });
      });
   },
   newimage: function( src ) {
      return src.substring( 0, src.search(/(\.[a-z]+)$/) ) + '_hover' + src.match(/(\.[a-z]+)$/)[0];
   },
   oldimage: function( src ){
      return src.replace(/_hover\./, '.');
   }
};

