$(document).ready(function() {
var a=$('div#cwrap > div.left').offsetHeight;
var b=$('div#cwrap > div.right').offsetHeight;
var c=Math.max(a,b);
$('div#cwrap > div.left').css('height',c);
$('div#cwrap > div.right').css('height',c);



Cufon.replace('div#menu li a,div#cwrap h1,div#cwrap h2,div#sitemap > span', { fontFamily: 'Graffiare', hover: 'true' });

$(function(){
			$('#slider').slides({
				play: 7000,
				pause: 2500,
				hoverPause: true,
				animationStart: function(){
					$('.caption').animate({
						bottom:-35
					},100);
				},
				animationComplete: function(current){
					$('.caption').animate({
						bottom:0
					},200);
					if (window.console && console.log) {
						// example return of current slide number
						if (window.console && window.console.log) {
							console.log(current);
						}
					};
				}
			});
		});

});

