jQuery.noConflict();
(function($) { 
  $(function() {

		$('#menu li').each(function(i) { 
			if($(this).find('a').text().length > 15) { 
				$(this).addClass('two_lines');
			}
		});
	$(':submit').addClass('submit_button');

	$('#thumbs li').click(function() {
		$('#bigpicstitle').fadeOut('slow');
		$('#bigpics img').fadeOut('slow');
		$('#thumbs li').removeClass('photo_active');
		$(this).addClass('photo_active');
		src = $('#thumbs li.photo_active a').attr('href');
		title = $('#thumbs li.photo_active a').attr('title');
		$('#bigpics img').attr('src',src);
		$('#bigpicstitle').text(title);
		$('#bigpics img').fadeIn('slow');
		$('#bigpicstitle').fadeIn('slow');
		return false;
	});
	$('p.quotation').prepend('<b class="quot_start"></b>').append('<b class="quot_end"></b>');
	
	/*MOUSE OVER*/
	$('#login').click(function() { 
									$('div', $(this)).fadeIn("slow"); 
									$(this).addClass("show"); 
								});
	$('#login').hoverIntent(
					{	over: function() {  },
						timeout: 750,
						out: function() {
							$('div', $(this)).fadeOut("slow"); 
							$(this).removeClass('show');	
							$(this).removeClass('over');	
						}
					}
					);
});
})(jQuery);

