﻿
jQuery(document).ready(function() {

    jQuery("#email").html("<a href='mailto:hello@suedeapple.co.uk'>hello@suedeapple.co.uk</a>");

    jQuery(".glow").css("opacity", "0.9");


    //*********************
    //Menu Animate
    //*********************

    var navDuration = 150; //time in miliseconds
    var navJumpHeight = "15px";

    jQuery('#menu li a').not('.current').hover(function() {
        jQuery(this).animate({ paddingTop: "12px" }, navDuration);
    }, function() {
        jQuery(this).animate({ paddingTop: "8px" }, navDuration);
    });

 











		; // This sets the opacity of the thumbs to fade down to 30% when the page loads
$(".bkcol").fadeTo(300, 0);

		$(".portfolioitem").hover(function(){

$(".portfoliohovertext").show()
$(".bkcol").show()
			$(".portfoliohovertext").fadeTo(300, 1.0); // This should set the opacity to 100% on hover
$(".bkcol").fadeTo(150, 0.5); // This should set the opacity to 100% on hover
		},function(){
			$(".portfoliohovertext").fadeTo(300, 0); // This should set the opacity back to 30% on mouseout
$(".bkcol").fadeTo(300, 0.0); // This should set the opacity to 100% on hover
		});







});


