﻿jQuery.noConflict();
jQuery(document).ready(function($){

/*div spacing*/
	
	$('div.section:even').css('margin-right','10px');
	
	$('div.section:even').each(function(){
		
		var myH = $(this).find('div.main').height();
		var myN = $('div.section').index(this);
		//alert(myH+" "+myN);
		if($('div.section:eq('+(myN+1)+')').height() !=undefined){
			var nextH = $('div.section:eq('+(myN+1)+')').find('div.main').height();
			$(this).find('div.main').css('height',Math.max(myH,nextH)+'px');
			$('div.section:eq('+(myN+1)+')').find('div.main').css('height',Math.max(myH,nextH)+'px');
		}
		
	});
	
	/*auto scroll*/
$(function () {
        $('a.smsc').click(function () {
            //var tgt = $(this).attr('href');
			//alert(tgt);
			$(this).blur();
			var targetOffset = $($(this).attr('href')).offset().top;
			$('html,body').animate({scrollTop: targetOffset}, 300);

            return false;
        });
    
});

	
});