function setThreeDots() {
    $('.item_short').ThreeDots({
        max_rows: 1,
        whole_word: true,
        ellipsis_string: '...'
    });
    $('.item_short2').ThreeDots({
        max_rows: 1,
        whole_word: true,
        ellipsis_string: '...'
    });
}

$(document).ready(function () {
    setThreeDots();
});

$(function(){
	// BUTTON
	$('.fg-button').hover(
		function(){ $(this).removeClass('ui-state-default').addClass('ui-state-focus'); },
		function(){ $(this).removeClass('ui-state-focus').addClass('ui-state-default'); }
	);
	
	// MENU	
	$('#flat').fgmenu({ 
		content: $('#flat').next().html(), // grab content from this page
		showSpeed: 400 
	});
});

