/**
* This initiate body bg position, based on window size and .wrapper div position
*/
function initBodyBgPosition() {
	var offset = jQuery(".wrapper").offset();
    var left_pos = offset.left - 222;
    jQuery("body").css({backgroundPosition: left_pos+'px 0'});
}

/* tab management */
function MagPushForumZone1() {
	jQuery('#mag-pushforum-zone1').show().removeClass('active');
	jQuery('#mag-pushforum-zone2').hide().addClass('active');
	jQuery('#mag-pushforum-li-zone1').removeClass('active');
	jQuery('#mag-pushforum-li-zone2').addClass('active');
}
function MagPushForumZone2() {
	jQuery('#mag-pushforum-zone1').hide().addClass('active');
	jQuery('#mag-pushforum-zone2').show().removeClass('active');
	jQuery('#mag-pushforum-li-zone1').addClass('active');
	jQuery('#mag-pushforum-li-zone2').removeClass('active');
}

/* Carousel */
function showCarousel(elem) {
	jQuery(elem).css({visibility:'visible', position:'static'});
}

jQuery(document).ready(function(){
	initBodyBgPosition();
	
	jQuery(window).bind('resize', function() {
    	initBodyBgPosition();
    });
	
	jQuery('.blocs-community-right .creations .member-galery').carousel({onLoad:showCarousel});
	jQuery('.carousel-control').html('');
	
	// add shadows
	jQuery('.mag-home-middle-large').append('<div class="shadow home-large"></div>');
	jQuery('div.mag-half-orange').after('<div class="shadow mini"></div>');
});