$(document).ready(function() {

    //Equalise Home Column heights
    $(function() {
        if ($('#hcol-left').height() >= $('#hcol-right').height()) {
            $('#hcol-right').height($('#hcol-left').height());
        } else {
            $('#hcol-left').height($('#hcol-right').height());
        }
    });


    // Form Fields
    $("input.frmfld2, #squery, #equery").focus(function() {
        $(this).attr("value", "");
        $(this).css("color", "#ffffff");
    });
    $("input:file").uniform(); 

    //Drop-down
    $("#nav li").hover(
		function() {
		    $(this).addClass('over');
		    $(this).children("ul").fadeIn('fast');
		},
		function() {
		    $(this).removeClass('over');
		    $(this).children("ul").fadeOut('fast');
		});

        $("#nav li a").focus(function() {
            $(this).mouseover();
        });
        $("#nav li li:last-child a").blur(function() { $(this).offsetParent("a").mouseout(); });


    //Lightbox
    //$("a.lightbox").lightBox();
    //$("a.lightbox").prettyPhoto({ theme: 'dark_rounded' });

    //Cufon
    Cufon.replace('h1')
    Cufon.now();

});



