$(document).ready(function(){
$('ul.transition').innerfade({
speed: 1000,
timeout: 5000,
type: 'sequence',
containerheight: '500px'
});
$('#content_left').css({'left':'-468px'});
$('#content_left').animate({'left':'0px'},1500);
/* Team */
$('.team_left,.team_l').hide();
teammem = '';
$('a.team').live('click',function(){
teammem = $(this).attr('id');
$('.team_left_main').hide();
$('.team_l').html('
CLOSE X');
$('.'+teammem+'_left,.team_l').fadeIn();
//alert(teammem);
});
$('.team_l span').live('click',function(){
$('.team_left,.team_l').hide();
$('.team_left_main').fadeIn();
});
/* Multiple Content */
multicont = '';
$('a.multi_content_control').click(function(){
multicont = $(this).parent('blockquote').index()-1;
$('#multi_content div').hide();
$('#multi_content div:eq('+multicont+')').fadeIn();
//alert(multicont);
});
/* Pretty Photo */
$("#multi_content a").prettyPhoto({
animationSpeed: 'normal', /* fast/slow/normal */
padding: 40, /* padding for each side of the picture */
opacity: 0.35, /* Value betwee 0 and 1 */
showTitle: true, /* true/false */
allowresize: true, /* true/false */
counter_separator_label: ' / ', /* The separator for the gallery counter 1 "of" 2 */
theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
});
});