$(document).ready(function(){

	/* SEARCH STUFF */
	$('img#searchSubmit').click(function(){
		if ($('div#search input[name="search"]').val() != '') {
			window.location = '?module=Search&keywords='+$('div#search input[name="search"]').val();
			return false;
		}
	});
	$('div#search input[name="search"]').focus(function() {
		$(this).val('');
	}).blur(function() { if ($(this).val() == '') { $(this).val('SEARCH'); } });


	$('.changemo').swapit('_over');
	
	$('a').DZEmailDecryptomatic();

	if ($('#photoRotate').length) {
	$('#photoRotate').cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout:  6000		
	});
	}
	
    
});
