$(function() {
	$('#col1a-full a.img').lightBox({fixedNavigation:true});
	$('div.otherpics a').lightBox({fixedNavigation:true});
	$('div.spotlight a').lightBox({fixedNavigation:true});
	$('div.spotlight a').lightBox({fixedNavigation:true});
	$(".lightbox").lightBox({fixedNavigation:true});
});

$(document).ready(function(){
    $('#cyclic').cycle({ 
        fx:     'fade', 
        timeout: 5000,
        after:   onAfter 
    });
    
    $('input#btn').click(function(){

	var nme = $('input#nme').val();
	var email = $('input#email').val();
	
	var ret
	
	$.ajax({
		type:"POST",
		url:"/scripts/mailerexec.php",
		data:"nme="+nme+"&email="+email,
		success: function() {
			$('form#contact_form').submit();
		}
	});
	return false;
		
});
		
});

function onAfter() { 
    $('#cyclic_title').html(this.alt); 
} 
