	(function($){
	
		basic = function() {
		
			if($('body').attr('id')=='home'){
				$('li.exhibition').each(function(){
					if($(this).children('.info').children('.ckinfo').height() > $(this).children('.info').height()){
					
						var h = $(this).children('.info').children('.ckinfo').height();
						var oh = $(this).children('.info').height();
						$(this).children('div.call').children('a').bind('click',function(e){
							var elm = $(this).parent('.call').siblings('.info');
							var btn = $(this);
							if(elm.height() < h){
								elm.animate({height:h},300);
								btn.css('background-position','right -171px').css('color','#555555');
							} else {
								elm.animate({height:oh},300);
								btn.css('background-position','right -108px').css('color','#0080D1');
							}
							return false;
						});

						$(this).children('h2').children('a').bind('click',function(e){
							var elm = $(this).parent('h2').siblings('.info');
							var btn = $(this);
							if(elm.height() < h){
								elm.animate({height:h},300);
							} else {
								elm.animate({height:oh},300);
							}
							return false;
						});
						
					} else {
						$(this).children('div.call').css('display','none');
					}
				});
			}
			
			if($('body').attr('id')=='contact' || $('body').attr('id')=='signup'){
				validatenow();
			}
			if($('body').attr('id')=='videos'){
				$("a[rel^='prettyPhoto']").prettyPhoto();
			}
			
			$('.exhibition:nth-child(3n)').css({'background':'none'});
		};
		
	})(jQuery);
