(function ($) {
  $.fn.vAlign = function(position) {
    return this.each(function(i){
	  var widthesc = jQuery(window).width()
	  	if(widthesc > 1280) {
			jQuery(".right-side-box-content .content-view-embed .class-book .book-data").css({'width':'220px'});
			jQuery(".left-side-box-content .description").css({'width':'220px'});
			jQuery(".left-side-box-content .content-view-embed .class-book .book-data, .left-side-box-content .attribute-content .content-view-embed .class-news .book-data").css({'width':'220px'});
			jQuery("#leftcol #leftside #leftside-inner .left-side-box .left-side-box-content").css({'width':'310px'});
			jQuery(".right-side-box-content .description").css({'width':'220px'});
		}
	  var height = $(this).outerHeight();
      var parentHeight = $(this).parent().height();
      var mt = (parentHeight - height) - 6;
      $(this).css("margin-top", mt + "px");
      //$(this).css("top", "50%");
      //$(this).css("position", "absolute");
    });
  };
})(jQuery);
