// JQuery Automatic Functions
$(function(){
	// ABAS Slide TOGGLE SECTIONS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	$('.bgsAbaSlideController').click(function(){
		$( this ).toggleClass("active");
		var child	= $( this ).next('.bgsAbaSlideItem');
		child.slideToggle();
		child.toggleClass("active");
	});
	
	// Instant Photo Loader ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	$('.instantPhotoLoaderNav ul li').click(function(){
		var img		= $(this).children('span').html();
		var html	= "<img src=\""+img+"\" alt=\"\" title=\"\"";

		$(".instantPhotoLoaderContent .photoHolder").html(html);
	});
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
});
