$(document).ready(function() {
	droplinemenu.buildmenu("navigation2")
	$('form#secondExample select').styledSelect();
	$('#mycarousel').jcarousel({wrap: 'circular'});

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

	$('.videoSelector a').click(function(){
		var liIndex = $(this).parent().parent().find('li').index($(this).parent());
		var attrName = $(this).closest('ul').attr('data-videoArea');
		$('#'+attrName).html(eval(attrName+"["+liIndex+"]"))
		return false;
	});

	$('#secondExample .styledSelect li:first').trigger('click');
	$('#secondExample .styledSelect a.countrySelected').parent().trigger('click');


});

