jQuery(document).ready(function($){
	$('.text, label').click(function() {
 		$(this).parent('fieldset').removeClass('default');    
	})
	
	.focus(function() {
		$(this).parent('fieldset').removeClass('default');
	})
	
	.blur(function() {
		if ($(this).val() == '')
			$(this).parent('fieldset').addClass('default');
	});
	
	$('.text, label').each(function() {
		if ($(this).val() != "") {
 			$(this).parent('fieldset').removeClass('default');    
		}
	})
	
	$("ul#menu-brothers li").hover(function(){
		$(this).children('.sub-menu').toggle();							
	});
	
	$('#stream').tabs();
	
	$('#homeslides').jcarousel({
		auto: 0,
		scroll: 1
	});
	
	$("#eventsList h4 span").each(function(i){
		$(this).html(i + 1 + ". ");
	});
	
});
