/*
set scripts
*/

$(document).ready(function(){
				
	//Examples of how to assign the ColorBox event to links with same idname
	$('a#colorBox').colorbox();
	
	//Examples of how to assign the ColorBox event to links within elements
	$('#idname a').colorbox({rel:'nofollow'});
				
	//striped tables
	$("table.tableList tr:odd").addClass("odd");
	
	// pressAccordion
	$("#newsletterAccordion").accordion({
		header: "h4",
		autoHeight: false,
		collapsible: true
	});
				
});

