/*
Phil Renaud the mad scientist behind this.
phil@rhinointernet.com
http://rhinointernet.com
*/



$(document).ready(function(){

   if ($('body').is('.home')) {
      slider();
   } //if home
   if ($('body').is('.gallery')) {
      gallery();
   } //if home
});






/*==( Homepage Animated Slider )======================================================*/

function slider() {
$('.homepageslider').css({'display': 'block'});
$('.homepageslider').children('li').eq(0).addClass('active').show();

heroloop = setInterval (function(){
      nextimage();
}, 10000); //heroloop

}; //homepageslider


function nextimage(){

if ($('.homepageslider').children('li.active').is(':last-child')){
$('.homepageslider').children('li.active').removeClass('active').hide(1000).siblings('li:first-child').show(1000).addClass('active');
} else {
$('.homepageslider').children('li.active').removeClass('active').hide(1000).next('li').show(1000).addClass('active');
}; //if

}; //nextimage




/*==( Image Gallery Interaction )======================================================*/

function gallery() {

$('.gallerycontainer').append('<img src="/images/gallery/galleryoverlay.png" alt="Gallery" style="position: absolute; top: 0px; left: 0px;" />');

$('ul.imagecontainer').clone().addClass('gallerynav').removeClass('imagecontainer').insertAfter('.gallerycontainer');



$('ul.gallerynav').find('span').remove();

$('ul.gallerynav').children('li:first-child').addClass('active');

$('ul.gallerynav').children('li').click(function(){
whichdidiclick = $(this).parent('ul').children('li').index($(this));
$(this).siblings('.active').removeClass('active');
$(this).addClass('active');
//$('ul.imagecontainer').animate({'left': -$('ul.imagecontainer').children('li').eq(whichdidiclick).position().left}, {duration: 1000, easing: 'expoinout'});
$('ul.imagecontainer').children('li').animate({'opacity': '0'}, 500);
setTimeout (function(){
$('ul.imagecontainer').css({'left': -$('ul.imagecontainer').children('li').eq(whichdidiclick).position().left});
$('ul.imagecontainer').children('li').animate({'opacity': '1'}, 500);
}, 500); //bigpromotionloop

}); //click

$('ul.imagecontainer').children('li').children('img').after('<img src="/images/ohiseewhatyouredoingthere.png" alt="Ryerson Group" style="width: 950px; height: 400px; position: absolute; top: 0px; left: 0px;" />');

$('div.gallerycontainer').append('<a class="goleft">Next</a>');
$('div.gallerycontainer').append('<a class="goright">Next</a>');

$('.goright').click(function(){
if ($('ul.gallerynav').children('li.active').is(':last-child')){
      $('ul.gallerynav').children('li:first-child').click();
} else {
      $('ul.gallerynav').children('li.active').next('li').click();
}; //if
}); //click goright

$('.goleft').click(function(){
if ($('ul.gallerynav').children('li.active').is(':first-child')){
      $('ul.gallerynav').children('li:last-child').click();
} else {
      $('ul.gallerynav').children('li.active').prev('li').click();
}; //if
}); //click goleft



}; //gallery




