/* ----------------------------------------------------------
	title		  : AGNC Framework
	created		  : 12/15/08
	last updated  : 12/15/08
	history		  :
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){

$('#content-sub .container').each(function(i){

var counter = i + 1;

if (counter % 3 == 0) {
	$(this).css('border-color','#f5d006');
} else if (counter % 2 == 0) { 
	$(this).css('border-color','#79aa25');
}

});

});//end doc ready