

$(document).ready(function() {
	$("#content").fadeIn(3000);
	$('#pane4').jScrollPane({scrollbarOnLeft:true, scrollbarWidth: 7, showArrows:true});
	$('#pane5').jScrollPane({scrollbarOnLeft:true, scrollbarWidth: 7, showArrows:true});
	$('#header_gallery').jcarousel({
    	animation: 1000,
    	auto: 3,
      	easing:'easeOutCubic',
      	wrap:'both'
    });
    $("a.fancy_galleryPopup").fancybox({
		'width': 700,
		'height': 400,
		'padding': 0,
		'autoScale': false,
		'transitionIn':'elastic',
		'transitionOut':'elastic',
		'overlayShow': true,
		'overlayOpacity': 0.8,
		'type': 'iframe'
	});
	$("a#fancy_contact").fancybox({
		'width': 420,
		'height': 270,
		'padding': 20,
		'autoScale': false,
		'overlayShow': true,
		'overlayOpacity': 0.8,
		'type': 'iframe'
	});
	$('#popup_gallery').cycle({ 
    fx:     'fade', 
    speed:  2000, 
    timeout: 0, 
    next:   '#next', 
    prev:   '#back' 
	});
	$('#article_gallery').cycle({ 
    fx:     'fade', 
    speed:  2000, 
    timeout: 0, 
    next:   '#next', 
    prev:   '#back' 
	});
});