$(document).ready( function () {

	tableStyling();
});

function tableStyling()
{
	
	$("table.styledTable tr:even").addClass("even");
	$("table.styledTable tr:odd").removeClass("even");

}


function showSample (sampleID){
	$("#sampleHolder").html('');
	$("#sampleHolder").append("<img src='images/adSizes/" + sampleID + ".gif' class='floatRight' width='250' alt='' />");
}
