$(document).ready(function(){
	
	
	$("#twitter").tweetable({
		username: 'Beef_Jerky_EU',
		time: true,
		limit: 1			
	});

	$('#slider').nivoSlider({
		animSpeed:500, //Slide transition speed
	    pauseTime:5000,
	    directionNav: false,
	    captionOpacity:0.8,
	    effect: 'fade'
	});
	
	
	$('#featured_product').iSlider({
		animSpeed: 250
	});
	$('#facts').iSlider({
		animSpeed: 500,
		vertical: true,
		arrowsNavHide: true
	});
	/*
	$('#partners').iSlider({
		animSpeed: 500,
		vertical: true
	});
	*/
});

function submitForm(form_id, target, url) { 
	$('#' + form_id).ajaxSubmit({
		target:        '#' + target,
		url:           url/*,
		beforeSubmit:  function(){ $('#tabs_ajax_status').show() },
		success:       function(){ $('#tabs_ajax_status').hide() }*/
	});
	return false; 
}

// small function to get the maximum height of the element
(function( $ ){
	$.fn.maxHeight = function() {
		var max = 0;
	    this.each(function() {
	    	max = Math.max( max, $(this).height() );
	    });
	    return max;
	};
})( jQuery );
