// JavaScript Document

$(document).ready(function (){
							
//hides society and news spots when the DOM is ready							
$('#societyspot').hide(400);
$('#newsspot').hide(400);

//fades society fb button

$('#socfblink').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#societyspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#societyspot').hide(400);
	});

//fades society twitter button

$('#soctwitlink').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#societyspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#societyspot').hide(400);
	});
							
// scrolls society to fb anchor
jQuery(function() {
               jQuery('selector').css( 'cursor', 'pointer' );

                jQuery('#socfblink').click(function () {
                        jQuery('#mediaviewer').stop().animate({'marginTop':'0'},{queue:false, duration:1000, easing: 'easeInOutExpo'});
                    }
                );
            });

// scrolls society to twitter anchor
jQuery(function() {
               jQuery('selector').css( 'cursor', 'pointer' );

                jQuery('#soctwitlink').click(function () {
                        jQuery('#mediaviewer').stop().animate({'marginTop':'-466'},{queue:false, duration:1000, easing: 'easeInOutExpo'});
                    }
                );
            });	

// fades news_signup  button and fades in spotlight
$('selector').css( 'cursor', 'pointer' );

$('#signup').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#newsspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#newsspot').hide(400);
	});

// fades news_news  button 
$('selector').css( 'cursor', 'pointer' );

$('#news').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#newsspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#newsspot').hide(400);
	});

// scrolls news to signup anchor
jQuery(function() {
               jQuery('selector').css( 'cursor', 'pointer' );

                jQuery('#signup').click(function () {
                        jQuery('#newsviewer').stop().animate({'marginTop':'-466'},{queue:false, duration:1000, easing: 'easeInOutExpo'});
                    }
                );
            });

// scrolls news to news anchor
jQuery(function() {
               jQuery('selector').css( 'cursor', 'pointer' );

                jQuery('#news').click(function () {
                        jQuery('#newsviewer').stop().animate({'marginTop':'0'},{queue:false, duration:1000, easing: 'easeInOutExpo'});
                    }
                );
            });	

// shows & hides purchase button
jQuery(function() {
               jQuery('selector').css( 'cursor', 'pointer' );

                jQuery('#purchasetab2').hoverIntent(function () {
                        jQuery(this).stop().animate({'marginTop':'121px'},{queue:false, duration:500, easing: 'easeInOutCubic'});
                    },
                    function () {
                        jQuery(this).stop().animate({'marginTop':'0px'},{queue:false, duration:500, easing: 'easeInOutCubic'});
                    }
                );
            });	

 // hides content boxes and overlays when home btn is pressed
 $('#homebtn').click(function() {
 $('#contentboxbio').hide(600);
 $('#contentboxnews').hide(600);
 $('#contentboxtour').hide(600);
 $('#contentboxmedia').hide(600);
 $('#contentboxsociety').hide(600);
 $('#contentboxart').hide(600);
 $('#contentboxcontact').hide(600);
 $('#imgoverlaybio').hide(400);
 $('#imgoverlaynews').hide(400);
 $('#imgoverlaytour').hide(400);
 $('#imgoverlaysociety').hide(400);
 $('#imgoverlayart').hide(400);
 $('#imgoverlaymedia').hide(400);
 $('#imgoverlaycontact').hide(400);
});

// fades home button
$('selector').css( 'cursor', 'pointer' );

$('#homebtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#homeglow').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#homeglow').fadeTo('fast',0);
	});

// fades bio button
$('selector').css( 'cursor', 'pointer' );

$('#biobtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#bioglow').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#bioglow').fadeTo('fast',0);
	});

// fades news button
$('selector').css( 'cursor', 'pointer' );

$('#newsbtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#newsglow').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#newsglow').fadeTo('fast',0);
	});

// fades tour button
$('selector').css( 'cursor', 'pointer' );

$('#tourbtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#tourglow').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#tourglow').fadeTo('fast',0);
	});

// fades extras button and opens submenu
$('#mediabtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#extrasglow').fadeTo('fast',0.5);
		$(this).animate({"width": "99px"},"fast");
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#extrasglow').fadeTo('fast',0);
		$(this).animate({"width": "40px"},"fast");
	});

// fades society button
$('#societybtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
	});

// fades artwork button
$('#artworkbtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
	});

// fades shop button
$('selector').css( 'cursor', 'pointer' );

$('#shopbtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#shopglow').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#shopglow').fadeTo('fast',0);
	});

// fades contact button
$('selector').css( 'cursor', 'pointer' );

$('#contactbtn').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#contactglow').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#contactglow').fadeTo('fast',0);
	});

// fades bio close button
$('#closebtn').hover(function()
	{
		$(this).fadeTo('fast',0.7);
	},
	function()
	{
		$(this).fadeTo('fast',1);
	});

// fades news close button
$('#closebtnnews').hover(function()
	{
		$(this).fadeTo('fast',0.7);
	},
	function()
	{
		$(this).fadeTo('fast',1);
	});

// fades tour close button
$('#closebtntour').hover(function()
	{
		$(this).fadeTo('fast',0.7);
	},
	function()
	{
		$(this).fadeTo('fast',1);
	});

// fades media close button
$('#closebtnmedia').hover(function()
	{
		$(this).fadeTo('fast',0.7);
	},
	function()
	{
		$(this).fadeTo('fast',1);
	});

// fades society close button
$('#closebtnsociety').hover(function()
	{
		$(this).fadeTo('fast',0.7);
	},
	function()
	{
		$(this).fadeTo('fast',1);
	});

// fades contact close button
$('#closebtncontact').hover(function()
	{
		$(this).fadeTo('fast',0.7);
	},
	function()
	{
		$(this).fadeTo('fast',1);
	});

 // hides content bio and overlay when close btn is pressed
 $('#closebtn').click(function() {
 $('#contentboxbio').hide(600);
 $('#imgoverlaybio').hide(400);
});
 
 // hides content news and overlay when close btn is pressed
 $('#closebtnnews').click(function() {
 $('#contentboxnews').hide(600);
 $('#imgoverlaynews').hide(400);
});
 
 // hides content tour and overlay when close btn is pressed
 $('#closebtntour').click(function() {
 $('#contentboxtour').hide(600);
 $('#imgoverlaytour').hide(400);
});
 
 // hides content media and overlay when close btn is pressed
 $('#closebtnmedia').click(function() {
 $('#contentboxmedia').hide(600);
 $('#imgoverlaymedia').hide(400);
});
 
 // hides content society and overlay when close btn is pressed
 $('#closebtnsociety').click(function() {
 $('#mediaviewer').stop().animate({'marginTop':'0'},1000);
 $('#contentboxsociety').hide(600);
 $('#imgoverlaysociety').hide(400);
});
 
 // hides content artwork and overlay when close btn is pressed
 $('#closebtnart').click(function() {
 $('#contentboxart').hide(600);
 $('#imgoverlayart').hide(400);
 $("#artcont").html("<img src=http://www.eldebrock.net/images/art_img1_full.jpg' + this.href + '>");
 return false;
});
 
 // hides content contact and overlay when close btn is pressed
 $('#closebtncontact').click(function() {
 $('#contentboxcontact').hide(600);
 $('#imgoverlaycontact').hide(400);
});

 // hides the boxes and overlays as soon as the DOM is ready
  $('#contentboxbio').hide();
  $('#imgoverlaybio').hide();
  $('#contentboxnews').hide();
  $('#imgoverlaynews').hide();
  $('#contentboxtour').hide();
  $('#imgoverlaytour').hide();
  $('#contentboxmedia').hide();
  $('#imgoverlaymedia').hide();
  $('#contentboxsociety').hide();
  $('#imgoverlaysociety').hide();
  $('#contentboxart').hide();
  $('#imgoverlayart').hide();
  $('#contentboxcontact').hide();
  $('#imgoverlaycontact').hide();
  
 // toggles the biobox on clicking the noted link and closes other windows and overlays
  $('#biobtn').click(function() {
 $('#bioviewer').stop().animate({'marginTop':'0'},1000);							  
 $('#contentboxnews').hide(400);
 $('#imgoverlaynews').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxbio').toggle(400);
 $('#imgoverlaybio').toggle(200);
 return false;
  });
  // toggles the newsbox on clicking the noted link and closes other windows and overlays
  $('#newsbtn').click(function() {
 $('#newsviewer').stop().animate({'marginTop':'0'},1000);
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxnews').toggle(400);
 $('#imgoverlaynews').toggle(200);
 return false;
  });
  // toggles the mediabox on clicking the billboard link and closes other windows and overlays
  $('#billboardbtn').click(function() {
 $('#newsviewer').stop().animate({'marginTop':'0'},1000);
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxnews').hide(400);
 $('#imgoverlaynews').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxmedia').toggle(400);
 $('#imgoverlaymedia').toggle(200);
 return false;
  });
  // toggles the societybox on clicking the society link and closes other windows and overlays
  $('#societybtn').click(function() {
 $('#newsviewer').stop().animate({'marginTop':'0'},1000);
 $('#mediaviewer').stop().animate({'marginTop':'0'},1000);
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxnews').hide(400);
 $('#imgoverlaynews').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxsociety').toggle(400);
 $('#imgoverlaysociety').toggle(200);
 return false;
  });
  // toggles the artbox on clicking the society link and closes other windows and overlays
  $('#artworkbtn').click(function() {
 $('#newsviewer').stop().animate({'marginTop':'0'},1000);
 $('#mediaviewer').stop().animate({'marginTop':'0'},1000);
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxnews').hide(400);
 $('#imgoverlaynews').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').toggle(400);
 $('#imgoverlayart').toggle(200);
 return false;
  });
  // toggles the newsbox subscribe sectionon clicking the noted link and closes other windows and overlays
  $('#linksubscribe').click(function() {
 $('#newsviewer').stop().animate({'marginTop':'-466'},1000);
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxnews').toggle(400);
 $('#imgoverlaynews').toggle(200);
 return false;
  });
  // toggles the newsbox on clicking the toursign button and closes other windows and overlays
  $('#toursign').click(function() {
 $('#newsviewer').stop().animate({'marginTop':'-466'},1000);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxnews').toggle(400);
 $('#imgoverlaynews').toggle(200);
 return false;
  });
  // toggles the tourbox on clicking the noted link and closes other windows and overlays
  $('#tourbtn').click(function() {
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxnews').hide(400);
 $('#imgoverlaynews').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxcontact').hide(400);
 $('#imgoverlaycontact').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxtour').toggle(400);
 $('#imgoverlaytour').toggle(200);
 return false;
  });  
  // toggles the contactbox on clicking the noted link and closes other windows and overlays
  $('#contactbtn').click(function() {
 $('#contentboxbio').hide(400);
 $('#imgoverlaybio').hide(200);
 $('#contentboxtour').hide(400);
 $('#imgoverlaytour').hide(200);
 $('#contentboxmedia').hide(400);
 $('#imgoverlaymedia').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxnews').hide(400);
 $('#imgoverlaynews').hide(200);
 $('#contentboxsociety').hide(400);
 $('#imgoverlaysociety').hide(200);
 $('#contentboxart').hide(400);
 $('#imgoverlayart').hide(200);
 $('#contentboxcontact').toggle(400);
 $('#imgoverlaycontact').toggle(200);
 return false;
  });
  
  // fades ituneslink
$('#ituneslink').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#itunesspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#itunesspot').fadeTo('fast',0);
	});

// fades shop link 
$('#ebshoplink').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#shopspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#shopspot').fadeTo('fast',0);
	});

// fades anjara link button
$('selector').css( 'cursor', 'pointer' );

$('#creditsanjara').hover(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.6);
	});
// fades ima link button
$('selector').css( 'cursor', 'pointer' );

$('#creditsima').hover(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.6);
	});
//fades tour signup button and fades in spotlight
$('#toursign').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
		$('#tourspot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#tourspot').fadeTo('fast',0);
	});

//fades network buttons
//fades itunes link
$('#linkitunes').hoverIntent(function()
	{
		$('#linkitunes').fadeTo('fast',1);
	},
	function()
	{
		$('#linkitunes').fadeTo('fast',0.5);
	});
//fades shop link
$('selector').css( 'cursor', 'pointer' );

$('#linkshop').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.5);
	});
//fades subscribe link
$('selector').css( 'cursor', 'pointer' );

$('#linksubscribe').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.5);
	});
//fades twitter link
$('selector').css( 'cursor', 'pointer' );

$('#linktwitter').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.5);
	});
//fades fb link
$('selector').css( 'cursor', 'pointer' );

$('#linkfb').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.5);
	});
//fades myspace link
$('selector').css( 'cursor', 'pointer' );

$('#networkms').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
	});
//fades bg1 link
$('selector').css( 'cursor', 'pointer' );

$('#bg1').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
	});
//fades bg2 link
$('selector').css( 'cursor', 'pointer' );

$('#bg2').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
	});
//fades bg3 link
$('selector').css( 'cursor', 'pointer' );

$('#bg3').hoverIntent(function()
	{
		$(this).fadeTo('fast',1);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
	});
//loads bg1 into bg container
$('#bg1').click(function()
	{
		$("#bgimage").html("<img src=http://www.eldebrock.net/images/bg_main_2b.jpg' + this.href + '>");
		return false;
	});
//loads bg2 into bg container
$('#bg2').click(function()
	{
		$("#bgimage").html("<img src=http://www.eldebrock.net/images/bg_main_1.jpg' + this.href + '>");
		return false;
	});
//loads bg3 into bg container
$('#bg3').click(function()
	{
		$("#bgimage").html("<img src=http://www.eldebrock.net/images/bg_main4.jpg' + this.href + '>");
		return false;
	});

//fades artwork thumbnails
//fades art1 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb1').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art1spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art1spot').fadeTo('fast',0);
	});
//fades art2 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb2').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art2spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art2spot').fadeTo('fast',0);
	});
//fades art3 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb3').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art3spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art3spot').fadeTo('fast',0);
	});
//fades art4 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb4').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art4spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art4spot').fadeTo('fast',0);
	});
//fades art5 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb5').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art5spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art5spot').fadeTo('fast',0);
	});
//fades art6 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb6').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art6spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art6spot').fadeTo('fast',0);
	});
//fades art7 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb7').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art7spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art7spot').fadeTo('fast',0);
	});
//fades art8 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb8').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art8spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art8spot').fadeTo('fast',0);
	});
//fades art9 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb9').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art9spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art9spot').fadeTo('fast',0.5);
	});
//fades art10 link
$('selector').css( 'cursor', 'pointer' );

$('#artthumb10').hover(function()
	{
		$(this).fadeTo('fast',1);
		$('#art10spot').fadeTo('fast',0.5);
	},
	function()
	{
		$(this).fadeTo('fast',0.7);
		$('#art10spot').fadeTo('fast',0);
	});
//loads artwork thumbnails into container
//loads art1 into artwork container
$('#artthumb1').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img1_full.jpg' + this.href + '>");
		return false;
	});
//loads art2 into artwork container
$('#artthumb2').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img2_full.jpg' + this.href + '>");
		return false;
	});
//loads art3 into artwork container
$('#artthumb3').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img3_full.jpg' + this.href + '>");
		return false;
	});
//loads art4 into artwork container
$('#artthumb4').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img4_full.jpg' + this.href + '>");
		return false;
	});
//loads art5 into artwork container
$('#artthumb5').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img5_full.jpg' + this.href + '>");
		return false;
	});
//loads art6 into artwork container
$('#artthumb6').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img6_full.jpg' + this.href + '>");
		return false;
	});
//loads art7 into artwork container
$('#artthumb7').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img7_full.jpg' + this.href + '>");
		return false;
	});
//loads art8 into artwork container
$('#artthumb8').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img8_full.jpg' + this.href + '>");
		return false;
	});
//loads art9 into artwork container
$('#artthumb9').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img9_full.jpg' + this.href + '>");
		return false;
	});
//loads art9 into artwork container
$('#artthumb10').click(function()
	{
		$("#artcont").html("<img src=http://www.eldebrock.net/images/art_img10_full.jpg' + this.href + '>");
		return false;
	});
});
