/**
	JCarousel init script
*/

function initJCarousel(){
	
	/** 
		Upload images carousel
	*/
	if( $('.upload-image-images ul').length > 0 ){
		$('.upload-image-images ul').jcarousel();
	}//
	
	
	/**
		Latest images block on user profile page
	*/
	if( $('#block-views-my_profile_latest_photos ul').length > 0 ){
		
		$('#block-views-my_profile_latest_photos').find('ul').attr('id', 'my_profile_latest_photos_carousel');
		$('#my_profile_latest_photos_carousel').addClass('jcarousel-skin-horizontal-block');
		$('#my_profile_latest_photos_carousel').jcarousel();
	}//
	
	/** 
		Shop product block
	*/
	if( $('#block-shop-product-container ul').length > 0 ){
		//$('#block-shop-product-container').find('ul').attr('id', 'block_shop_product_carousel');
		$('#block-shop-product').addClass('jcarousel-skin-horizontal-block');
		$('#block-shop-product').jcarousel();
	}//
	if( $('#block-shop-category-container ul').length > 0 ){
		$('#block-shop-category').addClass('jcarousel-skin-horizontal-block');
		$('#block-shop-category').jcarousel();
	}//
	
	
	/**
		Latest images block on group profile page
	*/
	if( $('#block-views-group_profile_latest_photos ul').length > 0 ){
		$('#block-views-group_profile_latest_photos').find('ul').attr('id', 'group_profile_latest_photos_carousel');
		$('#group_profile_latest_photos_carousel').addClass('jcarousel-skin-horizontal-block');
		$('#group_profile_latest_photos_carousel').jcarousel();
	}//
	
	
}//

/**
	JScrollPane init script
*/
function initJScrollPane(){
	
	/** user groups */
	// we switch to jscroll only if current block is higher than 300 px
	if( ($('#block-views-my_profile_user_groups div.item-list').length > 0) &&
		  ($('#block-views-my_profile_user_groups div.item-list').height() > 300) ){
		
		$('#block-views-my_profile_user_groups').find('div.item-list').attr('id', 'my_profile_user_groups_scroll');
		$('#my_profile_user_groups_scroll').addClass('pop-jscroll-pane');
	
		$('#my_profile_user_groups_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//
	
	/** suggested groups */
	if( ($('#block-og-8 div.item-list').length > 0) &&
		  ($('#block-og-8 div.item-list').height() > 300) ){
		
		$('#block-og-8').find('div.item-list').attr('id', 'my_profile_suggested_groups_scroll');
		$('#my_profile_suggested_groups_scroll').addClass('pop-jscroll-pane');
	
		$('#my_profile_suggested_groups_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//
	
	/** similar groups */
	if( ($('#block-og-9 div.item-list').length > 0) &&
		  ($('#block-og-9 div.item-list').height() > 300) ){
		
		$('#block-og-9').find('div.item-list').attr('id', 'group_profile_similar_groups_scroll');
		$('#group_profile_similar_groups_scroll').addClass('pop-jscroll-pane');
	
		$('#group_profile_similar_groups_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//
	
	/** suggested friends */
	if( ($('#block-block-45 div.item-list').length > 0) &&
		  ($('#block-block-45 div.item-list').height() > 300) ){
		
		$('#block-block-45').find('div.item-list').attr('id', 'my_profile_suggested_friends_scroll');
		$('#my_profile_suggested_friends_scroll').addClass('pop-jscroll-pane');
	
		$('#my_profile_suggested_friends_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//


	/** activist friends */
	if( ($('#block-block-46 div.item-list').length > 0) &&
		  ($('#block-block-46 div.item-list').height() > 300) ){
		
		$('#block-block-46').find('div.item-list').attr('id', 'my_profile_activist_friends_scroll');
		$('#my_profile_activist_friends_scroll').addClass('pop-jscroll-pane');
	
		$('#my_profile_activist_friends_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//

	/**
		featured groups 
	*/
	if( ($('#block-og-7 div.item-list').length > 0) &&
		  ($('#block-og-7 div.item-list').height() > 300) ){
		
		$('#block-og-7').find('div.item-list').attr('id', 'featured_groups_scroll');
		$('#featured_groups_scroll').addClass('pop-jscroll-pane');
	
		$('#featured_groups_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//
	
	/**
		My latest blogs
	*/	
	if( ($('#block-views-my_profile_latest_blogs div.item-list').length > 0) &&
		  ($('#block-views-my_profile_latest_blogs div.item-list').height() > 300) ){
		
		$('#block-views-my_profile_latest_blogs').find('div.item-list').attr('id', 'my_profile_latest_blogs_scroll');
		$('#my_profile_latest_blogs_scroll').addClass('pop-jscroll-pane');
	
		$('#my_profile_latest_blogs_scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 13, scrollbarMargin: 3});
	}//
	
}//


// Global Killswitch
if (Drupal.jsEnabled) {
  $(document).ready(initJCarousel);
	$(document).ready(initJScrollPane);
}