$(document).ready(function() { 

	$('#reviewPreview, #socialUpdates, .reviewText, #previousLooksGroup, .productRackWrapper').jScrollPane({
		verticalDragMinHeight: 40,
		horizontalDragMinWidth: 40
	});
	
	// Update height of my favourites

	if ($('.productRackWrapper').length) {
		element = $('.productRackWrapper').jScrollPane();
		var apis = element.data('jsp');
		
		items = $('#productContainer .rackItem').length;
		
		width = 156*items;
		$('#productContainer').css("width",width);
		$('.lflPage #productContainer').css("width",'700px'); /* Width fix for Love Loreal page */
		
			apis.reinitialise();
		
		height = apis.getContentHeight();
		height+=30;
		$('.productRackWrapper').css("height",height);
		
			apis.reinitialise();
	}
	
	if ($('#previousLooksGroup ul').length) {
		element = $('#previousLooksGroup').jScrollPane();
		var apis = element.data('jsp');
		
		items = $('#previousLooksGroup li').length;
		width = 157*items;
		
		$('#previousLooksGroup, #previousLooksGroup ul').css("width",width);
	
			apis.reinitialise();
	}
});
