/*-----------------------------------------------------* Rockamenco.com Utilities Javascript
	* Version: 0.9
	* Created: 2008.2.13
	* Last Modified: 2008.2.13-----------------------------------------------------*/

$(document).ready(function() {

/*
 LinkBoxes for Information & Blog Page
 via http://redline.hippy.jp/lab/misc/post_37.php
 =TBD (IE だとループがエラー気味）
*/
//	var linkboxes = $('div.vevent');
//		for (var i=0; i<linkboxes.length; i++){
//		var entrylink = $('p.uid');
//		for (var j=0; j<entrylink.length; j++){
//			$('div.vevent').click(function() {
//				var anchorTags = this.getElementsByTagName('a');
//				window.location = anchorTags[0].href;
//			});
//		}
//	}

	$('.uid').addClass('none');
	$('.vevent').click(function(){
    	window.location=$(this).find('a.url').attr('href');
	});

//Entry Hover Class Change
	$('.vevent').hover(
		function(){ $(this).addClass('vevent-hover'); },
		function(){ $(this).removeClass('vevent-hover'); }
	);

});
