//Enable tabs
$(document).ready(function() {
	$("#beach-tabs").tabs({ fx: { opacity: 'toggle', duration: 'fast' } });
});

//Adds focus for IE
$(function(){
    if (jQuery.browser.msie === true) {
        jQuery("input, textarea")
                .bind('focus', function() {
                        $(this).addClass('ieFocus');
                }).bind('blur', function() {
                        $(this).removeClass('ieFocus');
                });
    }

});

