$(document).ready(function(){
//Clear value in search input box
	$(function() {
		swapValues = [];
		$(".s_input").each(function(i){
			swapValues[i] = $(this).val();
			$(this).focus(function(){
				if ($(this).val() == swapValues[i]) {
					$(this).val("");
				}
			}).blur(function(){
				if ($.trim($(this).val()) == "") {
					$(this).val(swapValues[i]);
				}
			});
		});
});

//Zebra Stripe table and add hover class
$('.table tr:odd').addClass('odd');

//Open all links with rel="external" in new window
$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
 });