// JavaScript Document

		 $(document).ready(function(){	
		   $('a.email').nospam({
				replaceText: true,
				filterLevel: 'low'
			});  
		   
		   $('#slideshow').cycle({timeout: 3000});
		   
		   $('#select_ajanlatkeres').change(function() {
			  // set the window's location property to the value of the option the user has selected
			  window.location = $(this).val();
			});

		 });
