jQuery(document).ready(function() {
	jQuery('.quadrant img').hover(function() {
		//jQuery(this).parents('.quadrant').children('.quadContent').children('h3').children('a').css('border-bottom', '1px solid');
		jQuery(this).css('position', 'relative').animate({
			bottom: '23'
		}, 170, function() {
			jQuery(this).css('position', 'relative').animate({
				bottom: '0'
			}, 230);
		});
	}, function() {
		//jQuery(this).parents('.quadrant').children('.quadContent').children('h3').children('a').css('border-bottom', '1px dotted');
	});
	jQuery('.quadContent a').hover(function() {
		//jQuery(this).css('border-bottom', '1px solid');
		jQuery(this).parents('.quadrant').children('a').children('img').css('position', 'relative').animate({
			bottom: '23'
		}, 170, function() {
			jQuery(this).css('position', 'relative').animate({
				bottom: '0'
			}, 230);
		});
	}, function() {
		//jQuery(this).css('border-bottom', '1px dotted');
	}); //slider
	jQuery('#slider').jcarousel({
		wrap: 'circular',
		scroll: 1,
		auto: 4
	});
});

