$(document).ready(function() {

/************************************************/
/* LoginBox Show-hide 
/**********************************************/
$('#login_link').click(function() {
if ($('#login_box').is(":hidden")) {
	$('#login_box').slideDown();
} else {
	$('#login_box').slideUp();
}
});


/************************************************/
/* Comment textarea char counter
/**********************************************/


$('textarea').keyup(function(){
	if(this.value.length >= 250) {
		$(this).addClass('overlimit');
		this.value = this.value.substring(0, 250);
	} else {
		$(this).removeClass('overlimit');
	}

	$('#comment_counter').text(250-this.value.length);
});


/************************************************/
/* Tabs
/**********************************************/

	$('.tabs a').click(function(){
		switch_tabs($(this));
	});
 
	switch_tabs($('.defaulttab'));
 
 
function switch_tabs(obj) {
	$('.tab-content').hide();
	$('.tabs a').removeClass('selected');
	var id = obj.attr("rel");
 
	$('#'+id).show();
	obj.addClass('selected');
}


/************************************************/
/* Lazy loading images
/**********************************************/

$("img").lazyload({
	effect : "fadeIn"
});


/************************************************/
/* FIN
/**********************************************/

});


