
	$(document).ready(function(){
		
		$("#showcase img").hover(function() {
			$(this).animate({
				opacity:.8
			},200);
		}, function() {
			$(this).animate({
				opacity:1
			},200);
		});
		
		$(".portfolio img").hover(function() {
			$(this).animate({
				opacity:.8
			},200);
		}, function() {
			$(this).animate({
				opacity:1
			},200);
		});
		
		$("#myController").jFlow({
			slides: "#showcase",
			width: "800px",
			height: "220px",
			duration: 800,
			interval: 4000
		});
		
		$('a.portfolio').lightBox();
		
		$("#contact").click(function() {
		
			var name = $("#name").attr("value") == null ? '' : $("#name").attr("value");
			var email = $("#email").attr("value") == null ? '' : $("#email").attr("value");
			var message = $("#message").attr("value") == '' ? '' : $("#message").attr("value") ;
			
			if(name != '' && email != '' && message != '') {

				$.get("ajax.php",{contact:""+email,name:""+name,message:""+message}, function(data){
					$("#result").html(data);
					document.getElementById('message').value = '';
					document.getElementById('email').value = '';
					document.getElementById('name').value = '';
				});
				
			} else {
						
				$.get("ajax.php",{action:"fail"}, function(data){
					$("#result").html(data);
				});
			
			}
		
		});
	
	});

