$(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");
    });

    //Drop-down
    $("#nav li").hover(
		function() {
		    $(this).addClass('over');
		    $(this).children("ul").fadeIn('fast');
		},
		function() {
		    $(this).removeClass('over');
		    $(this).children("ul").fadeOut('fast');
		});

    //Lightbox
	//$("a.lightbox").lightBox();
	//$("a.lightbox").prettyPhoto({ theme: 'dark_rounded' });

	//Cufon
	Cufon.replace('h1')
	Cufon.now();

});


