/* Global Items */
$(document).ready(function() {


	// billboard switcher - working prototype only
	/*
	$("#billboardSwitcher a").click(function() {
	 	if ( !$(this).hasClass("selected") ) {
			var desiredSlide = $("#"+$(this).attr("title"));
			$("#billboardSlides div").fadeOut("normal");
			$(desiredSlide).fadeIn("normal");
			$("#billboardSwitcher a").removeClass("selected");
			$(this).addClass("selected");
		}
	});
	*/

	// Firsts and lasts
	$("#topnavPrime a:last").addClass("last");
	$("#sideNav li:last").addClass("last");
	$("#sideNav ul li:last").addClass("last");
	$(".listCols ul li:last-child").addClass("last");
	$(".twinBlock li:last-child").addClass("last");
	$(".promoText li:last-child").addClass("last");
	$(".child-block:last-child").addClass("child-block-last");
	$("#childArticle tr:odd").addClass("odd");
	$("#childArticle .dayrates td:first-child").addClass("first");
	$("#footer ul li:first-child").addClass("first");

	var img = $("<img src='/c/i/blue_advance.gif' class='arrowLinkImg' alt='' />");
	$(".arrowLink").append(img);


	//$("#homeFlip").mouseover(function(){
		//$("#homeFlip img").attr("src","/media/interactions_home_whatis.jpg");
	//}).mouseout(function(){
		//$("#homeFlip img").attr("src","/media/pharmacy_ambassadors.jpg");
//});




$("#homeFlip").mouseover(function() {
    $("#homeFlip img").attr("src", "/images/japan_button2.png");
}).mouseout(function() {
    $("#homeFlip img").attr("src", "/images/japan_button1.png");
});
	
	$("#curTotal").text($(".choices input:checked[id!=checkAll]").length);
	$(".choices input.checkbox").click(function(){
		if (this.id == "checkAll")
			$(".choices input.checkbox[id!=checkAll]").attr('checked', (!$(this).attr('checked'))?'':'checked');
		$("#curTotal").text($(".choices input:checked[id!=checkAll]").length);
	});


	// so ie6 can grab certain inputs
	$("input[type='checkbox']").addClass("simple-picker");
	$("input[type='radio']").addClass("simple-picker");



});

