var $s = jQuery.noConflict();

$s(document).ready(function($){
	
	// Makes external links open in a new window
	$s("a[href^='http']").not("[href*='6666ranch.com']").not("[href*='aquariumpreview.com']").not("[href*='aqdev.com']").attr('target','_blank'); 

	// JavaScript Document
	$s('ul.sf-menu').superfish();
	
	// alternate table row coloring
	$s("tr:nth-child(odd)").addClass("odd");
	

	// colorbox
	//$s('.colorbox').attr('rel', 'photo');
	$s('a.colorbox').attr('rel', 'photo');
	$s('a.qmButton').attr('rel', ''); // remove the colorbox next/prev from the quick mangaer area
	$s('#horsePic a.colorbox').attr('rel', ''); // remove the colorbox next/prev from the detail pages

	$s("a.colorbox").colorbox();
	$s("a[rel='photo']").colorbox();  // enable prev/next links
 
	// colorbox
	$s(".video").colorbox({iframe:true, width:800, height:600});
	
	$('.horseSale tr td:nth-child(1)').css("color", "#800000");
	$('.horseSale tr td:nth-child(2)').css("color", "#800000");
	
	$('.horseSale tr td:nth-child(1)').css("font-weight", "bold");
	$('.horseSale tr td:nth-child(2)').css("font-weight", "bold");
});



