/* Author: 

*/


$(document).ready(function() {
	/*$("#logo").lettering('words').children("span").lettering();
	
	$('#content').masonry({
		itemSelector: '.box',
		columnWidth: 240,
		cornerStampSelector: '.corner-stamp'
	});
*/

			//Cufon.replace('h1'); // Works without a selector engine
			//Cufon.replace('h1#ohgeetitle'); // Requires a selector engine for IE 6-7, see above

	
});

/* dubonwax tabs */
$(function() {

		$("#release1").organicTabs();

		$("#release2").organicTabs({
				"speed": 200
		});

});


(function($) {
	/**
	* Resizes an inner element's font so that the inner element completely fills the outer element.
	* @author Russ Painter WebDesign@GeekyMonkey.com
	* @version 0.1
	* @param {Object} Options which are maxFontPixels (default=40), innerTag (default='span')
	* @return All outer elements processed
	* @example <div class='mybigdiv filltext'><span>My Text To Resize</span></div>
	*/
	$.fn.textfill = function(options) {
		var defaults = {
			maxFontPixels: 40,
			innerTag: 'span'
		};
		var Opts = jQuery.extend(defaults, options);
		return this.each(function() {
			var fontSize = Opts.maxFontPixels;
			var ourText = $(Opts.innerTag + ':visible:first', this);
			var maxHeight = $(this).height();
			var maxWidth = $(this).width();
			var textHeight;
			var textWidth;
			do {
				ourText.css('font-size', fontSize);
				textHeight = ourText.height();
				textWidth = ourText.width();
				fontSize = fontSize - 1;
			} while ((textHeight > maxHeight || textWidth > maxWidth) && fontSize > 3);
		});
	};
})(jQuery);

$(document).ready(function() {
	$('.jtextfill').textfill();
});





















