$(function() {

	SimplyButtons.init();

	// Popup
	$.colorbox.settings.width = "800px";
	$.colorbox.settings.transition = "elastic";
	$.colorbox.settings.opacity = "0.3";

	$(".colorbox").colorbox();
	$("a[href$='.jpg'],a[href$='.png'],a[href$='.gif']").attr("rel","gallery").colorbox();

	$(".scroll").click(function() {
		var href = $(this).attr("href");
		$.scrollTo(href, 1000, {
			easing : 'easeInOutQuart',
			onAfter : function() {
				$(href).focus();
			}
		});
		return false;
	});
	var equalheightArray = [];
	$('.equalheight').each(function() {
		if(jQuery.inArray($(this).attr("rel"), equalheightArray) == -1) {
			equalheightArray.push($(this).attr("rel"));
		}
	});
	for(var i = 0; i < equalheightArray.length; i++) {
		$('.equalheight[rel="' + equalheightArray[i] + '"]').equalHeight();
	};

});

