$(document).ready(function () {
	$('.overflow').hover(function () {
		$(this).children('a').children('.front').stop().animate({ "top" : "180px" }, 500);
	}, function () {
		$(this).children('a').children('.front').stop().animate({ "top" : "0" }, 700);
	});
});
$(function() {
	$(".journal-container, .int-container").jCarouselLite({
    visible: 3,
    start: 0,
    btnNext: ".next",
    btnPrev: ".prev",
    btnGo:
    [".ext-nav .1", ".ext-nav .2",
    ".ext-nav .3", ".ext-nav .4",
    ".ext-nav .5", ".ext-nav .6",
    ".ext-nav .7", ".ext-nav .8",
    ".ext-nav .9", ".ext-nav .10",
    ".ext-nav .11", ".ext-nav .12",
    ".ext-nav .13"]
	});
});
$(document).ready(function () {
	if ($.browser.mozilla) {
    $('body').addClass('mozilla');
	}
	if ($.browser.webkit) {
    $('#jou-buttons, #int-buttons').addClass('webkit');
	}
	if ($.browser.msie) {
    $('body').addClass('ie');
	}
	if ($.browser.opera) {
    $('body').addClass('opera');
	}
});

