/**	International School of Siem Reap
  * issr-cambodia.com
  * ---------------
  * by definecreate
  * definecreate.com
  */

$(document).ready(function() {

    //styling links
    $('a[href$=".pdf"]:not(p.regBtn a)').addClass("pdf");
    $('.content a[href^="http://"]').addClass("external");

    //ie6 pngfix
    $('body').supersleight({ shim: 'x.gif' });

    //Fade in img	
    $('#subimg img').fadeIn('slow');

    //Count to 4
    $('#staffList li:nth-child(4n)').addClass("last");

    //List item hover for ie6
    $('ul#mainNavList li').hover(
		function() {
		    $(this).addClass("hover");
		},
		function() {
		    $(this).removeClass("hover");
		}
	);

    //Table alternate colours
    $('.table tbody tr:not(tr.info):even').addClass('alt');

    //Table open more info
    $('.showmore tbody th').toggle(
		function() {
		    $(this).parent().next("tr").removeClass("hidden").addClass("highlight");
		    $(this).toggleClass("active");
		},
		function() {
		    $(this).parent().next("tr").addClass("hidden").removeClass("highlight");
		    $(this).toggleClass("active");
		}
	);

    //Table row hover highlights
    $('.view tbody tr').hover(
		function() {
		    $(this).addClass("highlight");
		},
		function() {
		    $(this).removeClass("highlight");
		}
	);

	//Tipsy tooltip
	$('.tip').tipsy({ gravity: 'n' }); // n | s | e | w

});
