﻿$(window).load(function() {

    $('.carouselPanel').show();
/*
    if ($('#content').length > 0 && $('#column-left').length > 0) {

        var colHeight = 0;

        if ($('#column-right').length > 0 && $('#column-right').height() > $('#column-left').height()) {
            colHeight = $('#column-right').height() - 10;
        }
        else {
            colHeight = $('#column-left').height();
        }
        if ($('#content').height() < colHeight) {
            $('#content').height(colHeight - 2);
            $('#content .opaque').height($('#content').height() - 14);
        }
    }
*/
    $('.accordion').accordion({
        header: 'h2',
        autoHeight: false
    });
});

$(document).ready(function() {
    $('.datepicker').datepicker
	    (
	    $.extend({},
	    $.datepicker.regional["gb"],
	        {
	            dateFormat: "dd/mm/yy"
	        })
	    );
    $('.datepicker').attr("autocomplete", "off");
});
