// jQuery Cycle Gallery

$(document).ready(function() {
	
	// TRANSLATE TOOGLE
	$('div.flags').hide(); 
	$('a.translate').click(function() {
	  $('div.flags').slideToggle(300);
	  return false; //Prevent the browser jump to the link anchor
	}); 

});


