$(function() {	
		   
// TABBED CONTENT
$("ul.tabs").tabs("div.panes > div", {event: 'click', effect: 'fade'});

// PNG FIX
$(document).pngFix();

// initialize scrollable together with the navigator plugin
$('#features').jshowoff({ speed:6000 });

// create custom animation algorithm for jQuery called "bouncy"
$.easing.bouncy = function (x, t, b, c, d) {
    var s = 1.70158;
    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
}




//function smartColumns() { //Create a function that calculates the smart columns

        //Reset column size to a 100% once view port has been adjusted
//	$("ul.column").css({ 'width' : "100%"});

//	var colWrap = $("ul.column").width(); //Get the width of row
//	var colNum = Math.floor(colWrap / 190); //Find how many columns of 200px can fit per row / then round it down to a whole number
//	var colFixed = Math.floor(colWrap / colNum); //Get the width of the row and divide it by the number of columns it can fit / then round it down to a whole number. This value will be the exact width of the re-adjusted column

//	$("ul.column").css({ 'width' : colWrap}); //Set exact width of row in pixels instead of using % - Prevents cross-browser bugs that appear in certain view port resolutions.
//	$("ul.column li").css({ 'width' : colFixed}); //Set exact width of the re-adjusted column	

// }	

// smartColumns();//Execute the function when page loads

// $(window).resize(function () { //Each time the viewport is adjusted/resized, execute the function
//	smartColumns();
// });
});
