(function($){
 Smodal = function(){
var modalID;
$('div#enter').click(function() {
modalID = $(this).attr("name");
sheight = $(this).attr("sheight");
swidth = $(this).attr("swidth");
var position = (swidth)/-2;
  $('#modal').removeClass('hide');
  $('#' + modalID).removeClass('hide');
  $('.modal').css({'width': swidth, 'height' : sheight, 'marginLeft': position});
});
$('.mask,.close').click(function() {
  $('#modal').addClass('hide');
});
$('.mask,.close').click(function() {
  $('#' + modalID).addClass('hide');
});
  $('#enter,.close').hover(function() {
 $(this).css('cursor','pointer');
 }, function() {
 $(this).css('cursor','auto');
});
};
})(jQuery);
