$(document).ready(function(){
	
	$('<img />').attr('src', '/gsms/blog/wp-content/themes/glassmusee_v3/shared/img/li_bullet_arrow.png');
	$('<img />').attr('src', '/gsms/blog/wp-content/themes/glassmusee_v3/shared/img/li_bullet_arrow_on.png');
	
	$('a.slide').toggle(
	function(){
		$(this).parent().css("background-image", "url(/blog/wp-content/themes/glassmusee_v3/shared/img/li_bullet_arrow_on.png)");
	},
	function(){
		$(this).parent().css("background-image", "url(/blog/wp-content/themes/glassmusee_v3/shared/img/li_bullet_arrow.png)");
	});
	$('a.slide').click(function(){
		$(this).parent().parent().children('ul.hidden').slideToggle(200);
		
	});
	
});