jQuery(document).ready(function() {
	jQuery('.post-slider-derecha').click( function() {
		elements = jQuery('.post-slider A').length;
		elements_width = jQuery('.post-slider A:first').innerWidth();
		top_container_width = jQuery('.post-slider').width();
		container_margin = parseInt(jQuery('.post-slider .post-slider-interior').css('margin-left'));
		
		if ( (top_container_width) < (((elements*elements_width)+container_margin)-4) ) {
			jQuery('.post-slider .post-slider-interior').css('margin-left', (container_margin - elements_width) + 'px');
		}
		
		return false;
	});
	jQuery('.post-slider-izquierda').click( function() {
		elements = jQuery('.post-slider A').length;
		elements_width = jQuery('.post-slider A:first').innerWidth();
		top_container_width = jQuery('.post-slider').width();
		container_margin = parseInt(jQuery('.post-slider .post-slider-interior').css('margin-left'));
		
		if ( container_margin < 0 ) {
			jQuery('.post-slider .post-slider-interior').css('margin-left', (container_margin + elements_width) + 'px');
		}
		
		return false;
	});
	
	/*
	if ( jQuery('.sidebar').height() > jQuery('.cuerpo').height() ) {
		jQuery('.cuerpo').height(jQuery('.sidebar').height());
	}else if ( jQuery('.sidebar').height() < jQuery('.cuerpo').height() ) {
		jQuery('.sidebar').height(jQuery('.cuerpo').height());
	}
	*/
});
