$(document).ready(function(){
   

	jQuery('#mycarousel').jcarousel();

	$('#pane').jScrollPane({showArrows:true});







	
	
	
	$("a.lightbox").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			//return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			return '';
		}
	});

	$("a.modal").fancybox({
		'modal' : true,
		'scrolling'   : 'no'

	});

	$("a[rel=gallerygroup]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			//return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			return '';
		}
	});
			
});


function update_application_form() {

	var str = $('#applicationform').serialize();

	if ($('#directors_dynamic').length == 0) {

	} else {
		$('#directors_dynamic').load('/_template/pages/account-application-ajax-directors-names.php?' + str);
	}

	if ($('#partners_dynamic').length == 0) {

	} else {
		$('#partners_dynamic').load('/_template/pages/account-application-ajax-partners-names.php?' + str);
	}
	
}
