$(document).ready(function() {
	$('#categories li a[rel=nested]').click(function() {
		$(this).parent('li')
			.find('ul')
			.slideToggle();
		return false;
	});
	//tabs
	var $tabs = $('div.tabs > div.tab');
	$tabs.hide().filter(':first').show();
	$('div.tabs ul.tabmenu a').click(function(){
		$tabs.hide();
		$tabs.filter(this.hash).show();
		$('div.tabs ul.tabmenu a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').trigger('click');

/*
$('input[name=cc_wu]:radio').select(function() { 
alert('hai hello');

});

*/
/* $('input[name=cc_type]:radio').change(function(){
if ($("input[name='cc_type']:checked").val()=='WesternUnion')
{



alert('hai');

}
else
{
alert('ha hai');

}
});
*/

/*if(document.getElementById('cc_wu').value == 'WesternUnion')

{

alert('hai hello');
}
*/



});

