/*===========Mamun===============*/

jQuery(document).ready(function($){
	jQuery('div.nspArt').hover(
		function(){
			//$(this).addClass('hover')
			jQuery(this).css('background-position','left bottom');
		},
		function(){
			//$(this).removeClass('hover')
			jQuery(this).css('background-position','');
		}
	);
});
	

