
$(document).ready(function(){

	$('#slides1Wrapper').ppFeatureSlider({
		controller : ".sliderController",
		slidesWrapper : ".slides",
		slideWrapper : ".slide",
		selectedWrapper: ".slideSelected",
		paginationWrapper: ".pagination",
		paginationSelected: ".selected",
		infoPane: '.details',
		infoMode: 'static',
		autoCentre: false,
		drag: true
	});
	
	$('#BPS_recentlyAdded a, #BPS_soldProperties a').each(function(item) { 
		 var width = $(this).find('.image').find('img').width();
		 if(width <= 55) width = 55;
		 $(this).find('.image').find('span').width(width);
	});
	
	$('.BPS_topBoxWrapper div').hover(
	  function() {
		  $(this).addClass('BPS_topBoxHover');
	  },
	  function() {
		  $(this).removeClass('BPS_topBoxHover');
	  }
	);
	
});

