// COMMON FUNCTIONS

$('document').ready(function(){
	$('#sbtn').css('opacity',0);
	$sidebar	= $('.sidebar');
	if ( $sidebar.height() < 260 ) $sidebar.height(260);
});


// jQuery plugin
$.fn.pluginname = function( opts ) {
	var opts = $.extend({
		
	}, opts );
	return this.each(function(){
		
	});
}